Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/monthly-activity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ on:
jobs:
fake-activity:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# Use PAT to authenticate - the PAT owner must be in the branch protection bypass list
token: ${{ secrets.ACTIVITY_PAT }}

- name: Configure git
run: |
Expand All @@ -22,5 +23,5 @@ jobs:

- name: Create and push empty commit
run: |
git commit --allow-empty -m "chore: fake activity to GitHub workflows enabled"
git commit --allow-empty -m "chore: fake activity to keep GitHub workflows enabled"
git push
Loading