fix: docs and params #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Open | ||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
concurrency: | ||
# PR open and close use the same group, allowing only one at a time | ||
group: ${{ github.event.number }} | ||
cancel-in-progress: true | ||
permissions: | ||
contents: read | ||
jobs: | ||
test: | ||
name: Action Test | ||
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | ||
uses: ./.github/workflows/reusable-tests.yml | ||
Check failure on line 19 in .github/workflows/ci.yml GitHub Actions / .github/workflows/ci.ymlInvalid workflow file
|
||
results: | ||
name: Analysis Results | ||
needs: [test] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- run: echo "Workflow completed successfully!" |