Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/bambda-checker-manual.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run Bambda Checker Manually
name: Manually update README files

on: [workflow_dispatch]

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/bambda-checker-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
update_readmes:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
outputs:
new_bambdas: ${{ steps.check_bambda_changes.outputs.new_bambdas }}
bambda_files: ${{ steps.check_bambda_changes.outputs.bambda_files }}
Expand Down Expand Up @@ -58,7 +59,7 @@ jobs:
send_discord_webhooks:
runs-on: ubuntu-latest
needs: update_readmes
if: needs.update_readmes.outputs.new_bambdas == 'true'
if: needs.update_readmes.outputs.new_bambdas == 'true' && github.event.repository.fork == false
steps:
- uses: actions/checkout@v4
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/issue-webhook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
webhook:
runs-on: ubuntu-latest
if: github.event.repository.fork == false

steps:
- name: Push to Webhook
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr-webhook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
jobs:
webhook:
runs-on: ubuntu-latest
if: github.event.repository.fork == false

steps:
- name: Push to Webhook
Expand Down