Skip to content
name: Upstream pretest
on:
push:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
#concurrency:
# group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
# cancel-in-progress: false
#
permissions:
contents: write
jobs:
enmr-PRs:
runs-on: windows-latest
steps:
- uses: actions/checkout@main
- run: |
$submodules = Get-Content .gitmodules |
Select-String -Pattern 'path\s*=' |
ForEach-Object { $_ -replace '.*path\s*=\s*', '' }
$submodules | Out-Host