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 05a5cea
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 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
12 changes: 4 additions & 8 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 Down Expand Up @@ -35,8 +31,7 @@ runs:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: espressif/sync-jira-actions
ref: v1
repository: espressif/sync-jira-actions@v1

- name: Set up Python
uses: actions/setup-python@v5
Expand All @@ -56,11 +51,12 @@ runs:
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
# cache: 'npm'

- name: Install npm dependencies (markdown2confluence)
shell: bash
run: npm ci
run: npm install @shogobg/markdown2confluence@^0.1.6 --no-save
# run: npm ci

- name: Run sync_to_jira.py
shell: bash
Expand Down

0 comments on commit 05a5cea

Please sign in to comment.