Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/working-label.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
### this assigns a work-in-progress label when pull request updates/commits

name: Assign work in progress label when pull request is updated
on: [pull_request]
jobs:
working_label:
runs-on: ubuntu-latest
name: Label working progress
steps:
- uses: AlbertHernandez/working-label-action@v1.0.3
with:
work_in_progress_label: 'work in progress'
ready_to_review_label: 'awaiting review'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}