Fix v1.99 migration to use migration-specific job class #885
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
name: Backlog | |
on: | |
issues: | |
types: [opened, reopened] | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
add_to_backlog: | |
name: "Add to Backlog Project Board" | |
runs-on: ubuntu-latest | |
env: | |
gh_token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }} | |
steps: | |
- name: 'Add Issue' | |
if: ${{ github.event_name == 'issues' && env.gh_token }} | |
uses: alex-page/github-project-automation-plus@9a05133789dbc96bd560ec84223a0ad49253d342 | |
with: | |
project: Backlog | |
column: Inbox | |
repo-token: ${{ env.gh_token }} | |
- name: "Add Pull Request" | |
if: ${{ github.event_name == 'pull_request' && env.gh_token }} | |
uses: alex-page/github-project-automation-plus@9a05133789dbc96bd560ec84223a0ad49253d342 | |
with: | |
project: Backlog | |
column: In progress | |
repo-token: ${{ env.gh_token }} |