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 c6b6536
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 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
15 changes: 5 additions & 10 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 @@ -30,19 +26,18 @@ inputs:
default: 'Task'

runs:
using: 'composite'
using: composite
steps:
- name: Checkout repository
- name: Checkout action repository (espressif/sync-jira-actions)
uses: actions/checkout@v4
with:
repository: espressif/sync-jira-actions
ref: v1


- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
cache: pip

- name: Install Python dependencies
shell: bash
Expand All @@ -56,7 +51,7 @@ runs:
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache: npm

- name: Install npm dependencies (markdown2confluence)
shell: bash
Expand Down

0 comments on commit c6b6536

Please sign in to comment.