diff --git a/.github/workflows/tasks-container-update.yml b/.github/workflows/tasks-container-update.yml new file mode 100644 index 000000000..c28ca0617 --- /dev/null +++ b/.github/workflows/tasks-container-update.yml @@ -0,0 +1,34 @@ +name: tasks-container-update +on: + schedule: + - cron: '0 2 * * 4' + # can be run manually on https://github.com/cockpit-project/cockpit-podman/actions + workflow_dispatch: +jobs: + tasks-container-update: + runs-on: ubuntu-latest + permissions: + contents: write + pull-requests: write + statuses: write + container: + image: quay.io/cockpit/tasks + options: --user root + steps: + - name: Set up configuration and secrets + run: | + printf '[user]\n\tname = Cockpit Project\n\temail=cockpituous@gmail.com\n' > ~/.gitconfig + mkdir -p ~/.config + echo '${{ secrets.GITHUB_TOKEN }}' > ~/.config/github-token + + - name: Clone repository + uses: actions/checkout@v4 + + # https://github.blog/2022-04-12-git-security-vulnerability-announced/ + - name: Pacify git's permission check + run: git config --global --add safe.directory /__w/cockpit-podman/cockpit-podman + + - name: Run tasks-container-update + run: | + make bots + bots/tasks-container-update