TEST ONLY #8
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
name: "Update all Contributing Files" | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # Every Sunday at midnight UTC | |
workflow_dispatch: | |
push: | |
jobs: | |
update-contributing: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Create blah.txt | |
run: echo "This is some content" > blah.txt | |
shell: bash | |
working-directory: ${{ github.workspace }} | |
- name: Create a PR for local changes | |
uses: peter-evans/create-pull-request@v5 | |
id: cpr | |
with: | |
commit-message: "IGNORE THIS - TEST" | |
committer: "Github Actions <[email protected]>" | |
author: "Github Actions <[email protected]>" | |
title: "IGNORE THIS - TEST" | |
body: "IGNORE THIS - TEST" | |
branch: "ignore-this-branch-it-is-for-testing-only" | |
delete-branch: true |