Skip to content

Commit

Permalink
Added workflow for waiting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kgodey committed Nov 10, 2021
1 parent 0269da9 commit 24e615a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/update-project-on-issue-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ jobs:
cd .github/actions/project_update/
python project_update.py ${{ github.event.issue.node_id }} --status Review --priority Active
- name: Update Waiting issues
if: "${{ contains(github.event.issue.labels.*.name, 'status: waiting') }}"
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 Waiting
- name: Update Done issues
if: "${{ contains(github.event.issue.labels.*.name, 'status: done') }}"
env:
Expand Down

0 comments on commit 24e615a

Please sign in to comment.