Skip to content

use shared workflow submited in https://github.com/Open-Systems-Pharm… #59

use shared workflow submited in https://github.com/Open-Systems-Pharm…

use shared workflow submited in https://github.com/Open-Systems-Pharm… #59

Workflow file for this run

name: Main-Workflow
on:
push:
branches: [main]
pull_request:
jobs:
bump-dev-version: # only do that when actually merging in main/develop branch
if: github.event_name != 'pull_request'
uses: Felixmil/Workflows/.github/workflows/bump-dev-version.yaml@rSharp-actions

Check failure on line 12 in .github/workflows/main-workflow.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/main-workflow.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/main-workflow.yaml" -> "Felixmil/Workflows/.github/workflows/bump-dev-version.yaml@rSharp-actions" : failed to fetch workflow: workflow was not found.
with:
app-id: ${{ vars.VERSION_BUMPER_APPID }}
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
R-CMD-Check:
if: ${{ !cancelled() }}
needs: [update-core-files]
uses: Felixmil/Workflows/.github/workflows/R-CMD-check.yaml@rSharp-actions
test-coverage:
if: ${{ !cancelled() }}
needs: [update-core-files]
uses: Felixmil/Workflows/.github/workflows/test-coverage.yaml@rSharp-actions
pkgdown:
if: ${{ !cancelled() }}
needs: [update-core-files]
uses: Felixmil/Workflows/.github/workflows/pkgdown.yaml@rSharp-actions