diff --git a/.github/workflows/reactivate-workflows.yml b/.github/workflows/reactivate-workflows.yml new file mode 100644 index 0000000..fca9f05 --- /dev/null +++ b/.github/workflows/reactivate-workflows.yml @@ -0,0 +1,21 @@ +name: Reactivate Workflows + +on: + schedule: + - cron: '0 0 1 * *' + workflow_dispatch: + +permissions: + actions: write + +jobs: + reactivate_workflow: + name: Reactivate Workflow + runs-on: ubuntu-latest + strategy: + matrix: + WORKFLOW: ["PHP checks", "Reactivate Workflows"] + steps: + - name: Reactivate workflow + shell: bash + run: gh workflow enable ${{ matrix.WORKFLOW }}