Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/.githubworkflows*.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
jobs:
build:
Comment on lines +1 to +2

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Add workflow trigger so the job can run

This workflow defines jobs but never declares an on: trigger, so GitHub Actions will not run it for any event (e.g., pushes or PRs); the workflow will effectively be inert until an on: section is added. This is especially likely to be unintended for a new workflow file, since no events can activate it as written.

Useful? React with 👍 / 👎.

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "Running on Ubuntu"