-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gh-actions: move task when unlabelled
* Adds the possibility to move automatically an issue from the column Review to In Progress when the label ready-to-review is removed.
- Loading branch information
1 parent
7b4bd59
commit 604f8e1
Showing
2 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
Submodule issues-inspire
added at
a4458a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Move from Review to In Progress | ||
|
||
on: | ||
issues: | ||
types: | ||
- unlabeled | ||
|
||
jobs: | ||
add-comment: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: dessant/label-actions@v3 | ||
with: | ||
action-token: ${{ secrets.CERN_SIS_BOT_PAT }} | ||
project-url: https://github.com/orgs/cern-sis/projects/1 | ||
column-name: "In Progress" | ||
label-name: "ready-to-review" | ||
|