Skip to content

Commit

Permalink
Create ticket_description.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Custodio <[email protected]>
  • Loading branch information
leonardocustodio authored Oct 11, 2024
1 parent ab463d6 commit 434f8cb
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ticket_description.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Linear Description Update
on:
push:

jobs:
logLatestRelease:
runs-on: ubuntu-latest
steps:
- uses: octokit/[email protected]
id: get_latest_release
with:
headers: "Authorization: lin_api_mcHNiDcj52I6V9piHS7ZB9r3wFbCCXOOiaFB3sRM"
query: |
mutation issueUpdate($input: IssueUpdateInput!, $issueUpdateId: String!) {
issueUpdate(input: $input, id: $issueUpdateId) {
success
}
}
input: "test"
issueUpdateId: "PLA-2033"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: "echo 'latest release: ${{ steps.get_latest_release.outputs.data }}'"

0 comments on commit 434f8cb

Please sign in to comment.