Update spdlog #156
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 spdlog | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 7 * * *' | |
jobs: | |
update-spdlog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch release version | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
OWNER: gabime | |
REPO: spdlog | |
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(SPDLOG_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 spdlog to ${{ env.VERSION }}" | |
branch: "spdlog-${{ env.VERSION }}" | |
commit-message: "chore(ci): update spdlog to ${{ env.VERSION }}" | |
body: | | |
Update spdlog 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 |