Skip to content

Commit

Permalink
restore "update-core-file" workflow step
Browse files Browse the repository at this point in the history
  • Loading branch information
Felixmil committed Sep 5, 2024
1 parent 1ce3985 commit a70561f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ jobs:
secrets:
private-key: ${{ secrets.VERSION_BUMPER_SECRET }}

# update-core-files:
# if: ${{ !cancelled() && github.event_name == 'pull_request' }}
# needs: [bump-dev-version]
# uses: ./.github/workflows/update-core-files.yaml
update-core-files:
if: ${{ !cancelled() && github.event_name == 'pull_request' }}
needs: [bump-dev-version]
uses: ./.github/workflows/update-core-files.yaml

R-CMD-Check:
if: ${{ !cancelled() }}
needs: [bump-dev-version]
needs: [update-core-files]
uses: Open-Systems-Pharmacology/Workflows/.github/workflows/R-CMD-check-build.yaml@main

test-coverage:
if: ${{ !cancelled() }}
needs: [bump-dev-version]
needs: [update-core-files]
uses: Open-Systems-Pharmacology/Workflows/.github/workflows/test-coverage.yaml@main
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}


pkgdown:
if: ${{ !cancelled() }}
needs: [bump-dev-version]
needs: [update-core-files]
uses: Open-Systems-Pharmacology/Workflows/.github/workflows/pkgdown.yaml@main

0 comments on commit a70561f

Please sign in to comment.