Refactor the current Kaoto Operator to work with Kaoto v2 #5
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 epics to Roadmap ✨ | |
on: | |
issues: | |
types: [opened, labeled] | |
env: | |
MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} | |
jobs: | |
assign_to_newcomers_list: | |
runs-on: ubuntu-latest | |
name: 🎯 Move to Newcomers List 🎯 | |
steps: | |
- name: Assign issues with `good first issue` label to project 4 | |
uses: srggrs/[email protected] | |
if: contains(github.event.issue.labels.*.name, 'good first issue') | |
with: | |
project: 'https://github.com/orgs/KaotoIO/projects/4' | |
column_name: 'What To Do' | |
- name: Assign issues with `help wanted` label to project 4 | |
uses: srggrs/[email protected] | |
if: contains(github.event.issue.labels.*.name, 'help wanted') | |
with: | |
project: 'https://github.com/orgs/KaotoIO/projects/4' | |
column_name: 'What To Do' | |
assign_to_Kaoto_private: | |
runs-on: ubuntu-latest | |
name: 🎯 Move to Kaoto List 🎯 | |
steps: | |
- uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/KaotoIO/projects/10 | |
github-token: ${{ secrets.MY_GITHUB_TOKEN }} |