Skip to content

Commit

Permalink
docs(caller-workflow): add caller workflow for easy copy to target repo
Browse files Browse the repository at this point in the history
  • Loading branch information
tomassebestik committed Sep 6, 2024
1 parent 3449a13 commit 61759b0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/caller-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Sync to Espressif Jira

on:
issues: {types: [opened]}
issue_comment: {types: [created, edited, deleted]}
schedule: [cron: '0 * * * *']

jobs:
sync_to_jira:
name: >
Sync to Jira -
${{ github.event_name == 'issue_comment' && 'Issue Comments' ||
github.event_name == 'schedule' && 'New Pull Requests' ||
github.event_name == 'issues' && 'New Issues' }}
runs-on: ubuntu-latest
steps:
- name: Check out PR head
uses: actions/checkout@v4

- name: Sync to Jira
uses: espressif/sync-jira-actions@change/composite-action
with:
jira-project: IDFSYNTEST

0 comments on commit 61759b0

Please sign in to comment.