Skip to content

Commit

Permalink
Refining messaging in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Frank Steiler committed Jul 4, 2023
1 parent 6fba465 commit b9a457f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/actions/release/app/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,6 @@ runs:
if [ "${{ steps.get-git-metadata.outputs.current-tag }}" != "" ]; then
echo "url=https://www.npmjs.com/package/${{ steps.get-npm-metadata.outputs.name }}/v/${{ steps.get-npm-metadata.outputs.version }}" >> $GITHUB_OUTPUT
else
echo "::warning title=No release::There are no relevant changes based on conventional commit, so no new version is released."
echo "url=no-release" >> $GITHUB_OUTPUT
fi
3 changes: 2 additions & 1 deletion .github/actions/release/docker/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ runs:
if [ "${{ steps.get-git-metadata.outputs.current-tag }}" != "" ]; then
echo "url=https://hub.docker.com/r/${{ steps.get-docker-metadata.outputs.image-namespace }}/${{ steps.get-docker-metadata.outputs.image-repository }}/tags?page=1&ordering=last_updated" >> $GITHUB_OUTPUT
else
echo "url=no-release" >> $GITHUB_OUTPUT
echo "::warning title=No release::There are no relevant changes based on conventional commit, so no new version is released."
echo "url=''" >> $GITHUB_OUTPUT
fi
- id: update-readme
uses: peter-evans/dockerhub-description@v3
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
},
"github-actions.remote-name": "origin",
"github-actions.workflows.pinned.refresh.enabled": true,
"github-actions.workflows.pinned.refresh.enabled": false,
"github-actions.workflows.pinned.refresh.interval": 90,
"github-actions.workflows.pinned.workflows": [
".github/workflows/event_pr.yml",
Expand Down

0 comments on commit b9a457f

Please sign in to comment.