Commit ad7b6322 authored by ansible-role-updater[bot]'s avatar ansible-role-updater[bot]
Browse files

chore: sync from template v1.2.46

parent 9f0556e5
Loading
Loading
Loading
Loading
+0 −32
Original line number Diff line number Diff line
---
name: Update from template

"on":
  schedule:
    - cron: "00 00 * * *"
  workflow_dispatch:

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: false

jobs:
  merge:
    name: Update from template
    runs-on: ubuntu-latest
    permissions:
      contents: write
    steps:
      - name: Checkout
        uses: actions/checkout@v5.0.0

      - name: Run update script
        run: bash update.sh

      - name: Commit changes back to repository
        uses: EndBug/add-and-commit@v9.1.4
        with:
          commit: --signoff
          default_author: github_actor
          fetch: true
          message: 'ci: update from template'