Skip to content

Commit

Permalink
added support for composite actions
Browse files Browse the repository at this point in the history
  • Loading branch information
raianand committed Sep 5, 2024
1 parent d2efcd4 commit 776a5d9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ jobs:
name: ${{ env.tag }}
generate_release_notes: true
token: ${{ secrets.GITHUB_TOKEN }}
prerelease: ${{ endsWith(env.tag, 'rc') }}
prerelease: ${{ endsWith(env.tag, 'rc') || contains(env.tag, 'rc.') }}

- name: Verify Release
run: |
Expand Down
5 changes: 3 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion src/audit_summary.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ function createProcessTree(processTuples) {

function parentAction(node) {
if (node?.isAction) {
return node
// return node
return parentAction(node.parent) || node
}
if (node?.parent) {
return parentAction(node.parent)
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const releaseVersion = 'v1.7.0-rc'
const releaseVersion = 'v1.7.0-rc.1'

module.exports = {
releaseVersion
Expand Down

0 comments on commit 776a5d9

Please sign in to comment.