Skip to content

Commit

Permalink
Add on-unlabeled.yml (JabRef#11970)
Browse files Browse the repository at this point in the history
  • Loading branch information
koppor authored Oct 15, 2024
1 parent be7bea6 commit f3756f9
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/on-unlabeled.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: On unlabeled

on:
issues:
types:
- unlabeled
pull_request_target:
types:
- unlabeled

jobs:
FirstTimeCodeContribution_or_Assigned:
if: ${{ (github.event.label.name == 'FirstTimeCodeContribution') || (github.event.label.name == '📍 Assigned') }}
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- name: Move Issue to "Free to take" Column in "Candidates for University Projects"
uses: m7kvqbe1/github-action-move-issues@feat/default-column-label-remove
with:
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }}
project-url: "https://github.com/orgs/JabRef/projects/3"
target-labels: "📍 Assigned"
target-column: "Assigned"
ignored-columns: ""
default-column: "Free to take"
- name: Move Issue to "Free to take" Column in "Good First Issues"
uses: m7kvqbe1/github-action-move-issues@feat/default-column-label-remove
with:
github-token: ${{ secrets.GH_TOKEN_ACTION_MOVE_ISSUE }}
project-url: "https://github.com/orgs/JabRef/projects/5"
target-labels: "📍 Assigned"
target-column: "Assigned"
ignored-columns: ""
default-column: "Free to take"

0 comments on commit f3756f9

Please sign in to comment.