Skip to content

Commit

Permalink
Add help for first action in lab1
Browse files Browse the repository at this point in the history
  • Loading branch information
rajbos authored Dec 9, 2023
1 parent a7da2ff commit d8b30ec
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions labs/help/Lab01.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
on:
issue:
types: [opened, closed]

jobs:
issue-ops:
runs-on: ubuntu-latest
steps:
# we don't need any source code, so we could skip the checkout action
# - uses: actions/checkout@v3

# but since we want to use the CLI, it needs a repo context
# we can create that by cloning manually, but the checkout action is way easier
- uses: actions/checkout@v3

- name: Create comment on issue
run: |
gh issue comment ${{ github.event.issue.number }} --body "Hello from the GitHub workflow"

0 comments on commit d8b30ec

Please sign in to comment.