Skip to content

Commit

Permalink
fix: add dynamic ref to action.yml file for development testing
Browse files Browse the repository at this point in the history
  • Loading branch information
tomassebestik committed Sep 13, 2024
1 parent d651127 commit 1ff0c32
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 7 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,15 @@

### ✨ New features

- **action**: updated this action from Docker to Composite type *(Tomas Sebestik - 74f52fd)*
- **action**: updated this action from Docker to Composite type *(Tomas Sebestik - d926676)*

### 🐛 Bug fixes

- add dynamic ref to action.yml file for development testing *(Tomas Sebestik - 39cd704)*

### 📖 Documentation

- **caller-workflow**: add caller workflow for easy copy to target repo *(Tomas Sebestik - 51bc1c1)*
- **caller-workflow**: add caller workflow for easy copy to target repo *(Tomas Sebestik - d651127)*

---

Expand Down
11 changes: 6 additions & 5 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
name: "GitHub to JIRA Issue Sync"
description: "Performs simple one way syncing of GitHub issues into JIRA."

branding:
icon: "fast-forward"
color: "green"

inputs:
cron_job:
description: >
Expand All @@ -29,14 +25,19 @@ inputs:
description: 'The type of JIRA issue to be created if no labels to the issue are set. Default = "Task"'
default: 'Task'

branch:
description: 'The branch to checkout in the action repository'
default: 'v1'

runs:
using: 'composite'
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: espressif/sync-jira-actions
ref: v1
ref: ${{ inputs.jira-project }}
# ref: change/composite-action@${{ env.REF_BRANCH || 'v1' }}

- name: Set up Python
uses: actions/setup-python@v5
Expand Down

0 comments on commit 1ff0c32

Please sign in to comment.