remove workflow that doesn't work at this time (#8511)

This commit is contained in:
Clint 2020-03-09 12:00:17 -05:00 committed by GitHub
parent 530f296522
commit 7661677428
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
name: sustain
on:
issues:
types: [labeled]
jobs:
build:
runs-on: ubuntu-latest
env:
PROJECT_COLUMN_ID: ${{secrets.PROJECT_COLUMN_ID}}
steps:
- name: Maybe move an issue to the project board
uses: actions/github-script@0.8.0
if: github.event.label.name == 'bug'
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"
})