Skip to content

Commit

Permalink
Merge branch 'main' into patch
Browse files Browse the repository at this point in the history
  • Loading branch information
fboundy committed Dec 22, 2024
2 parents f70c7df + 4abac8b commit 91fe1e7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test Push Permissions

on:
workflow_dispatch:

jobs:
test-push:
name: Test Push to Branch
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Make a Test Change
run: |
echo "Test file generated by bot" > test-file.txt
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "Test commit by bot"
- name: Push Test Change
run: git push

0 comments on commit 91fe1e7

Please sign in to comment.