Rubberstamp #61
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
--- | |
# | |
# Rubberstamp | |
# https://github.com/mcandre/rubberstamp | |
# | |
name: "Rubberstamp" | |
on: # yamllint disable-line rule:truthy | |
schedule: | |
# Once every 5 minutes | |
# - cron: "*/5 * * * *" | |
# Once a month | |
- cron: "0 0 * */1 *" | |
jobs: | |
Audit: | |
runs-on: "ubuntu-22.04" | |
steps: | |
- uses: "actions/checkout@v4" | |
- run: "sudo apt-get update" | |
- run: "sudo apt-get install -y git" | |
- run: "date -u >.rubberstamp" | |
- run: "git remote set-url origin \"[email protected]:${RUBBERSTAMP_GH_REPO}.git\"" | |
env: | |
RUBBERSTAMP_GH_REPO: "${{ github.repository }}" | |
- run: "git remote get-url origin" | |
- run: "git config --global user.email '[email protected]'" | |
- run: "git config --global user.name 'Rubberstamp'" | |
- run: "git add .rubberstamp" | |
- run: "git commit -am 'rubberstamp'" | |
- run: "echo \"$SSH_KEY\" >/tmp/key && chmod 0600 /tmp/key && git -c 'core.sshCommand=ssh -i /tmp/key' push" | |
env: | |
SSH_KEY: "${{ secrets.SSH_KEY }}" |