Add GitHub issue templates #8
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: Assign to Project (classic) MAIN | |
on: | |
issue_comment: | |
types: [ created ] | |
issues: | |
types: [ opened ] | |
pull_request: | |
types: [ opened ] | |
pull_request_target: | |
types: [ opened ] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
assign-project-main: | |
runs-on: ubuntu-latest | |
name: Assign to Project | |
steps: | |
- name: Assign new issues and new pull requests to project MAIN | |
uses: srggrs/[email protected] | |
if: | | |
github.event.action == 'created' || | |
github.event.action == 'opened' || | |
github.event.action == 'reopened' | |
with: | |
project: 'https://github.com/fandom-zh/fandom-zh-doc/projects/1' | |
column_name: 'Backlog' |