Test CI with UX label #3 #11
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: Add UX issues into the Kubefirst Action project | |
on: | |
issues: | |
types: [labeled] | |
env: | |
MY_GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
jobs: | |
ux-to-project: | |
runs-on: ubuntu-latest | |
name: Assign to the Kubefirst Action Project | |
steps: | |
- name: Assign issues with the UX label to the project and no status column | |
uses: srggrs/[email protected] | |
if: contains(github.event.issue.labels.*.name, 'ux') | |
with: | |
project: 'https://github.com/orgs/kubefirst/projects/7' | |
column_name: 'No Status' |