Skip to content

[Setting] 깃허브 이슈 템플릿 추가 #22

[Setting] 깃허브 이슈 템플릿 추가

[Setting] 깃허브 이슈 템플릿 추가 #22

Workflow file for this run

name: Automate project assignments
on: [issues, pull_request]
jobs:
github-actions-automate-projects:
runs-on: ubuntu-latest
steps:
- name: add-new-issues-to-repository-based-project-column
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
if: github.event_name == 'issues' && github.event.action == 'opened'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PROJECT_URL: https://github.com/orgs/Dev-FE-1/projects/7
GITHUB_PROJECT_COLUMN_NAME: To do
- name: add-new-prs-to-repository-based-project-column
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
if: github.event_name == 'pull_request' && github.event.action == 'opened'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PROJECT_URL: https://github.com/orgs/Dev-FE-1/projects/7
GITHUB_PROJECT_COLUMN_NAME: To do