Skip to content

TEST ONLY

TEST ONLY #8

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