Skip to content

Commit

Permalink
ci(workflows): remove repository check conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
NekoAria committed Oct 26, 2024
1 parent 940d378 commit c9ce6a5
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/close-stale-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ permissions:
jobs:
close_stale_issues:
runs-on: ubuntu-latest
if: github.repository == 'electh/ReactFlux'
steps:
- uses: actions/stale@v9
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'electh/ReactFlux'
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/deploy-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ on:
jobs:
build-and-push:
runs-on: ubuntu-latest
if: github.repository == 'electh/ReactFlux'
steps:
- uses: actions/checkout@v4

Expand Down
1 change: 0 additions & 1 deletion .github/workflows/deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
build-and-deploy:
concurrency: ci-${{github.ref}}
runs-on: ubuntu-latest
if: github.repository == 'electh/ReactFlux'
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/dockerhub-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
jobs:
dockerHubDescription:
runs-on: ubuntu-latest
if: github.repository == 'electh/ReactFlux'
steps:
- uses: actions/checkout@v4

Expand All @@ -21,6 +20,6 @@ jobs:
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
repository: electh/reactflux
repository: ${{ github.repository }}
short-description: ${{ github.event.repository.description }}
enable-url-completion: true
1 change: 0 additions & 1 deletion .github/workflows/scheduled-docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
jobs:
build-and-push:
runs-on: ubuntu-latest
if: github.repository == 'electh/ReactFlux'
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit c9ce6a5

Please sign in to comment.