Skip to content

Commit

Permalink
TEST ONLY
Browse files Browse the repository at this point in the history
  • Loading branch information
ColmBhandal committed Sep 5, 2023
1 parent 05042b4 commit 08da1e6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/contributing_update_all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Create a random file
run: |
# Generate a random filename
random_filename=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 10 | head -n 1)
# Create an empty file with the random filename
touch $random_filename
- name: Create a PR for local changes
uses: peter-evans/create-pull-request@v5
id: cpr
Expand Down

0 comments on commit 08da1e6

Please sign in to comment.