Update commit.yaml #6
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: Update Chart.yaml | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
update-chart: | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Modify Chart.yaml | |
run: | | |
echo "${{ github.sha }}" > commit.txt | |
- name: Commit Changes Using GraphQL API | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh api graphql -f query=' | |
mutation CreateCommit($input: CreateCommitOnBranchInput!) { | |
createCommitOnBranch(input: $input) { | |
commit { | |
url | |
} | |
} | |
}' -F input='{ | |
"branch": { | |
"repositoryNameWithOwner": "${{ github.repository }}", | |
"branchName": "${{ github.ref_name }}" | |
}, | |
"expectedHeadOid": "${{ github.sha }}", | |
"message": { | |
"headline": "Update Chart.yaml" | |
}, | |
"fileChanges": { | |
"additions": [ | |
{ | |
"path": "commit.txt", | |
"contents": "'"$(cat commit.txt | base64 -w 0)"'" | |
} | |
], | |
"deletions": [] | |
} | |
}' |