Lock Buttons stay lit #568
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
name: Auto Assign to Backlog | |
on: | |
issues: | |
types: [opened, labeled] | |
env: | |
MY_GITHUB_TOKEN: ${{ secrets.SIMON_ORG_TOKEN }} | |
jobs: | |
assign_one_project: | |
runs-on: ubuntu-latest | |
name: Assign to Project | |
steps: | |
- name: Assign NEW issues backlog inbox | |
uses: srggrs/[email protected] | |
if: github.event.action == 'opened' | |
with: | |
project: 'https://github.com/orgs/WootingKb/projects/2' | |
column_name: 'Inbox' | |
- uses: konradpabjan/[email protected] | |
if: github.event.action == 'labeled' | |
with: | |
action-token: "${{ secrets.SIMON_ORG_TOKEN }}" | |
project-url: "https://github.com/orgs/WootingKb/projects/2" | |
column-name: "Bugs" | |
label-name: "bug" | |
columns-to-ignore: "Freezer,Assigned,Done" | |
- uses: konradpabjan/[email protected] | |
if: github.event.action == 'labeled' | |
with: | |
action-token: "${{ secrets.SIMON_ORG_TOKEN }}" | |
project-url: "https://github.com/orgs/WootingKb/projects/2" | |
column-name: "Features / Enhancement" | |
label-name: "enhancement" | |
columns-to-ignore: "Freezer,Assigned,Done" | |
- uses: konradpabjan/[email protected] | |
if: github.event.action == 'labeled' | |
with: | |
action-token: "${{ secrets.SIMON_ORG_TOKEN }}" | |
project-url: "https://github.com/orgs/WootingKb/projects/2" | |
column-name: "Freezer" | |
label-name: "wontfix" | |
columns-to-ignore: "Assigned,Done" |