-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Adds update-libs workflow (#45)
- Loading branch information
1 parent
9ce8085
commit e258314
Showing
1 changed file
with
54 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,54 @@ | ||
name: Auto-update Charm Libraries | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0,12 * * *" | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
update-lib: | ||
name: Check libraries | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Set up SSH Key for Signing Commits | ||
run: | | ||
mkdir -p ~/.ssh | ||
echo "${{ secrets.BOT_PRIVATE_SIGNING_KEY }}" > ~/.ssh/id_rsa | ||
chmod 600 ~/.ssh/id_rsa | ||
echo "${{ secrets.BOT_PUBLIC_SIGNING_KEY }}" > ~/.ssh/id_rsa.pub | ||
chmod 644 ~/.ssh/id_rsa.pub | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "telcobot" | ||
git config --global user.signingkey ~/.ssh/id_rsa.pub | ||
git config --global commit.gpgsign true | ||
git config --global gpg.format ssh | ||
- name: Fetch charm libraries | ||
run: | | ||
sudo snap install charmcraft --classic --channel latest/stable | ||
charmcraft fetch-lib | ||
env: | ||
CHARMCRAFT_AUTH: "${{ secrets.CHARMCRAFT_AUTH }}" | ||
|
||
- name: Create a PR for local changes | ||
uses: peter-evans/[email protected] | ||
with: | ||
token: ${{ secrets.TELCO_GITHUB_BOT_TOKEN }} | ||
commit-message: "chore: update charm libraries" | ||
committer: "Telcobot <[email protected]>" | ||
author: "Telcobot <[email protected]>" | ||
title: "chore: Update charm libraries" | ||
body: | | ||
Automated action to fetch latest version of charm libraries. The branch of this PR | ||
will be wiped during the next check. Unless you really know what you're doing, you | ||
most likely don't want to push any commits to this branch. | ||
branch: "chore/auto-libs" | ||
delete-branch: true |