Skip to content

Commit

Permalink
[ci] Enhancement: Demo GitHubActions
Browse files Browse the repository at this point in the history
  • Loading branch information
ppenna committed Mar 20, 2024
1 parent c5f7b86 commit 5358dbd
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.

name: Demo
concurrency:
group: catloop
cancel-in-progress: false

on:
push:
branches:
- wip-*

workflow_dispatch:

jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thanks for reporting!'
})

0 comments on commit 5358dbd

Please sign in to comment.