-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (34 loc) · 1.08 KB
/
auto-add-entries.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: auto-add-zenodo-entries
on:
issues:
types: opened
jobs:
respond:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Print issue number
run: |
echo "Issue Number - ${{ github.event.issue.number }}"
echo "Repository Name - ${{ github.repository }}"
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Add zenodo resources
env:
GITHUB_API_KEY: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_RUN_ID: "${{ github.run_id }}"
run: |
python scripts/auto-add-zenodo-entry.py ${{ github.repository }} ${{ github.event.issue.number }}
- name: Add github resources
env:
GITHUB_API_KEY: "${{ secrets.GITHUB_TOKEN }}"
GITHUB_RUN_ID: "${{ github.run_id }}"
run: |
python scripts/auto-add-github-resources.py ${{ github.repository }} ${{ github.event.issue.number }}