-
Notifications
You must be signed in to change notification settings - Fork 8
38 lines (33 loc) · 1.11 KB
/
add-to-project.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
name: Add new issues and PRs to project
on:
issues:
types: [opened]
pull_request_target:
types: [opened]
jobs:
add_item_to_project:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
cd .github/actions/project_update/
pip install -r requirements.txt
- name: Add PR to project
if: ${{ github.event_name == 'pull_request_target' }}
env:
MATHESAR_ORG_GITHUB_TOKEN: ${{secrets.MATHESAR_ORG_GITHUB_TOKEN}}
run: |
cd .github/actions/project_update/
python project_update.py ${{ github.event.pull_request.node_id }} --status Started
- name: Add issue to project
if: ${{ github.event_name == 'issues' }}
env:
MATHESAR_ORG_GITHUB_TOKEN: ${{secrets.MATHESAR_ORG_GITHUB_TOKEN}}
run: |
cd .github/actions/project_update/
python project_update.py ${{ github.event.issue.node_id }} --status Triage