Skip to content

Update commit.yaml

Update commit.yaml #6

Workflow file for this run

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": []
}
}'