This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
Dependency Dashboard #2577
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, edited, labeled, assigned] | |
env: | |
MY_GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} | |
jobs: | |
assign_one_project: | |
runs-on: ubuntu-latest | |
name: 🎯 Move to Wish List 🎯 | |
steps: | |
- name: Assign issues with `user-story` label to project 3 | |
uses: srggrs/[email protected] | |
if: contains(github.event.issue.labels.*.name, 'user-story') | |
with: | |
project: 'https://github.com/orgs/KaotoIO/projects/3' | |
column_name: 'WishList' | |
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 }} | |
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' |