summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaige B Paulsen <gaige@cluetrust.com>2025-06-15 21:37:35 -0400
committerGitHub <noreply@github.com>2025-06-15 21:37:35 -0400
commit6f9974e44b8d388e646d6f028dcf09f01de2047c (patch)
treec54b5e015e7b284818b851cd565fd0d77d9c2f59
parentbaca9d392aa6b625f66b1c1b615346856c0bc1a3 (diff)
parent4707dd30d44867d9195689de6619d87fcc04c359 (diff)
downloadvyos.vyos-revert-409-paramiko-compatible.tar.gz
vyos.vyos-revert-409-paramiko-compatible.zip
Merge branch 'main' into revert-409-paramiko-compatiblerevert-409-paramiko-compatible
-rw-r--r--.github/workflows/refresh_token.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/refresh_token.yml b/.github/workflows/refresh_token.yml
new file mode 100644
index 00000000..a75f9633
--- /dev/null
+++ b/.github/workflows/refresh_token.yml
@@ -0,0 +1,14 @@
+name: Refresh the automation hub token
+# the token expires every 30 days, so we need to refresh it
+on:
+ schedule:
+ - cron: '0 12 1,15 * *' # run 12pm on the 1st and 15th of the month
+ workflow_dispatch:
+
+jobs:
+ refresh:
+ uses: ansible/devtools/.github/workflows/ah_token_refresh.yml@v22.5.0
+ with:
+ environment: release
+ secrets:
+ ah_token: ${{ secrets.AH_TOKEN }}