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
1 change: 1 addition & 0 deletions .github/workflows/cargo-deny.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ on:
jobs:
deny:
runs-on: ubuntu-latest
if: github.repository == 'block/goose'
permissions:
contents: read
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/minor-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:

jobs:
release:
if: github.repository == 'block/goose'
uses: ./.github/workflows/create-release-pr.yaml
with:
bump_type: "minor"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rebuild-skills-marketplace.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ concurrency:
jobs:
rebuild-docs:
runs-on: ubuntu-latest
if: github.repository == 'block/goose'
permissions:
contents: write

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Scorecard analysis
runs-on: ubuntu-latest
# `publish_results: true` only works when run from the default branch. conditional can be removed if disabled.
if: github.event.repository.default_branch == github.ref_name || github.event_name == 'pull_request'
if: github.repository == 'block/goose' && (github.event.repository.default_branch == github.ref_name || github.event_name == 'pull_request')
permissions:
# Needed to upload the results to code-scanning dashboard.
security-events: write
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
stale:
name: 'Mark and Close Stale PRs'
runs-on: ubuntu-latest
if: github.repository == 'block/goose'

steps:
# Use the official stale action from GitHub
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-hacktoberfest-leaderboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:
jobs:
update-leaderboard:
runs-on: ubuntu-latest
if: github.repository == 'block/goose'
permissions:
contents: read
pull-requests: read
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/update-health-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
update-dashboard:
name: 'Update Health Dashboard'
runs-on: ubuntu-latest
if: github.repository == 'block/goose'

steps:
- name: 'Download previous metrics'
Expand Down