Skip to content

Workflow file for this run

name: native-code-change
on:
push:
branches: feature/electrod
# paths:
# - 'org.alloytools.pardinus.native/'
# - '.github'
jobs:
electrod:
runs-on: ubuntu-latest
steps:
- uses: ./.github/workflows/subflow-electrod.yaml
secrets: inherit

Check failure on line 15 in .github/workflows/trigger-native.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/trigger-native.yaml

Invalid workflow file

You have an error in your yaml syntax on line 15
native:
runs-on: ubuntu-latest
steps:
- uses: ./.github/workflows/subflow-native.yaml
secrets: inherit
merge-natives:
needs: [electrod,native]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
path: org.alloytools.pardinus.native/native
merge-multiple: true
- run: |
git config user.name github-actions
git config user.email github-actions@galloytools.org
- uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Native code update request"
title: "Native code update"
delete-branch: true
branch: native
base: master