taking out for now due to perms issue (#8969)

This commit is contained in:
Patrick Bernal 2020-05-11 10:03:15 -04:00 committed by GitHub
parent a1f674c53c
commit c68c5016da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
on:
issues:
types: [milestoned]
jobs:
build:
runs-on: ubuntu-latest
env:
PROJECT_COLUMN_ID: ${{secrets.PROJECT_TRIAGE_COLUMN_ID}}
steps:
- name: Move an issue to the project board for triage
uses: actions/github-script@0.8.0
if: github.event.milestone.title == 'triaged'
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.projects.createCard({
column_id: process.env.PROJECT_COLUMN_ID,
content_id: context.payload.issue.id,
content_type: "Issue"
})