Update YAML #261
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 YAML | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 7 * * *' | |
jobs: | |
update-yaml: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch release version | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
OWNER: jbeder | |
REPO: yaml-cpp | |
run: | | |
VERSION=$(gh api "/repos/$OWNER/$REPO/releases/latest" --jq ".tag_name") | |
echo "VERSION=$VERSION" >> "$GITHUB_ENV" | |
- name: Modify file if new version | |
run: | | |
sed -i 's/\(set(YAML_GIT_TAG "\)[^"]*\(".*\)/\1${{ env.VERSION }}\2/' .github/workflows/deps/CMakeLists.txt | |
- name: Create PR if new version | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
token: ${{ secrets.PAT }} | |
title: "chore(ci): update yaml to ${{ env.VERSION }}" | |
branch: "yaml-${{ env.VERSION }}" | |
commit-message: "chore(ci): update yaml to ${{ env.VERSION }}" | |
body: | | |
Update YAML to ${{ env.VERSION }}. | |
This PR has been created automatically. | |
committer: github-actions[bot] <[email protected]> | |
author: github-actions[bot] <[email protected]> | |
assignees: "EmixamPP" | |
labels: dependencies | |
delete-branch: true |