ci: run-patch-release
tries to run unexisting make target update-docs
#649
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: Add to obs-docs project | |
on: | |
issues: | |
types: | |
- labeled | |
permissions: | |
contents: read | |
jobs: | |
add_to_project: | |
runs-on: ubuntu-latest | |
if: github.event.label.name == 'Team:Docs' | |
steps: | |
- uses: octokit/[email protected] | |
id: add_to_project | |
with: | |
query: | | |
mutation add_to_project($projectid:ID!,$contentid:ID!) { | |
addProjectV2ItemById(input:{projectId:$projectid contentId:$contentid}) { | |
item { | |
... on ProjectV2Item { | |
id | |
} | |
} | |
} | |
} | |
projectid: ${{ env.PROJECT_ID }} | |
contentid: ${{ github.event.issue.node_id }} | |
env: | |
PROJECT_ID: "PVT_kwDOAGc3Zs0iZw" | |
GITHUB_TOKEN: ${{ secrets.APM_TECH_USER_TOKEN }} |