Update Overview Decks for April 2024 #533
Workflow file for this run
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
# This is a basic workflow to help you get started with Actions | |
name: Move new requests to the correct Open Mainframe Project Kanban Boards | |
on: | |
issues: | |
types: [opened, labeled, closed] | |
pull_request_target: | |
types: [opened, labeled, closed] | |
jobs: | |
automate-project-columns: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Add Zowe Medium blog posts | |
uses: alex-page/[email protected] | |
if: | | |
github.event_name == 'issues' && | |
github.event.action == 'opened' && | |
contains(github.event.issue.labels.*.name,'zowe-blog') | |
with: | |
project: Zowe Medium blog | |
column: New Blog Post | |
repo-token: ${{ secrets.YOUR_NEW_PERSONAL_TOKEN }} | |
- name: Add I Am A Mainframer podcasts | |
uses: alex-page/[email protected] | |
if: | | |
github.event_name == 'issues' && | |
github.event.action == 'opened' && | |
contains(github.event.issue.labels.*.name,'podcast') | |
with: | |
project: I am a Mainframer Podcast | |
column: Potential Speakers | |
repo-token: ${{ secrets.YOUR_NEW_PERSONAL_TOKEN }} |