Skip to content

use action from main branch in fork #60

use action from main branch in fork

use action from main branch in fork #60

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

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

invalid value workflow reference: no version specified
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
test-coverage:
if: ${{ !cancelled() }}
needs: [update-core-files]
uses: Felixmil/Workflows/.github/workflows/test-coverage.yaml
pkgdown:
if: ${{ !cancelled() }}
needs: [update-core-files]
uses: Felixmil/Workflows/.github/workflows/pkgdown.yaml