forked from goto-bus-stop/setup-zig
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add automation to bump cache version
- Loading branch information
1 parent
80b30c2
commit b163c48
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Bump Cache Version | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
cache_version: | ||
description: "New @useblacksmith/cache version" | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
bump-cache-version: | ||
runs-on: blacksmith | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Create new branch | ||
id: create-branch | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email github-actions[bot]@users.noreply.github.com | ||
git fetch origin default | ||
git checkout default | ||
git pull origin default | ||
timestamp=$(date +%Y%m%d%H%M%S) | ||
branch_name="bump-cache-version-${{ github.event.inputs.cache_version }}-$timestamp" | ||
git checkout -b $branch_name | ||
echo "branch_name=$branch_name" >> $GITHUB_OUTPUT | ||
- name: Update package.json | ||
run: | | ||
sed -i 's/"@actions\/cache": "npm:@useblacksmith\/cache@[^"]*"/"@actions\/cache": "npm:@useblacksmith\/cache@${{ github.event.inputs.cache_version }}"/' package.json | ||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Build | ||
run: npm run test | ||
|
||
- name: Check for changes | ||
id: git-check | ||
run: | | ||
git diff --exit-code || echo "changes=true" >> $GITHUB_OUTPUT | ||
- name: Create Pull Request | ||
if: steps.git-check.outputs.changes == 'true' | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
git add . | ||
git commit -m "Bump @actions/cache version to ${{ github.event.inputs.cache_version }}" | ||
git push origin ${{ steps.create-branch.outputs.branch_name }} | ||
gh pr create --title "Bump @actions/cache version to ${{ github.event.inputs.cache_version }}" --body "This PR updates the @actions/cache version to ${{ github.event.inputs.cache_version }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Bump Tags on Default | ||
|
||
on: | ||
push: | ||
branches: | ||
- default | ||
|
||
jobs: | ||
bump-tags: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Update v3 and v3.0.1 tags | ||
run: | | ||
git config user.name github-actions[bot] | ||
git config user.email github-actions[bot]@users.noreply.github.com | ||
git tag -fa v3 -m "Update v3 tag to latest commit on default" | ||
git tag -fa v3.0.1 -m "Update v3.0.1 tag to latest commit on default" | ||
git push origin v3 v3.0.1 --force | ||
- name: Send Slack notification on success | ||
uses: slackapi/slack-github-action@v1 | ||
with: | ||
payload: | | ||
{ | ||
"text": "Updated setup-ruby v3 and v3.0.1 tags to the latest commit on default" | ||
} | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.CACHE_SLACK_WEBHOOK_URL }} |