Skip to content

Commit

Permalink
✨ Add packaging workflow for semantic-release (ossf#2964)
Browse files Browse the repository at this point in the history
* ✨ Add packaging workflow for semantic-release

Signed-off-by: Matt Travi <programmer@travi.org>

* Resolve indentation inconsistencies

Signed-off-by: Matt Travi <programmer@travi.org>

---------

Signed-off-by: Matt Travi <programmer@travi.org>
  • Loading branch information
travi authored and gabibguti committed May 10, 2023
1 parent bad5316 commit c2b55df
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 deletions.
9 changes: 9 additions & 0 deletions checks/fileparser/github_workflow.go
Original file line number Diff line number Diff line change
Expand Up @@ -565,6 +565,15 @@ func IsPackagingWorkflow(workflow *actionlint.Workflow, fp string) (JobMatchResu
},
LogText: "candidate container publishing workflow using ko",
},
{
// Commonly JavaScript packages, but supports multiple ecosystems
Steps: []*JobMatcherStep{
{
Run: "npx.*semantic-release",
},
},
LogText: "candidate publishing workflow using semantic-release",
},
}

return AnyJobsMatch(workflow, jobMatchers, fp, "not a publishing workflow")
Expand Down
5 changes: 5 additions & 0 deletions checks/fileparser/github_workflow_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -998,6 +998,11 @@ func TestIsPackagingWorkflow(t *testing.T) {
filename: "../testdata/.github/workflows/github-workflow-packaging-cargo.yaml",
expected: true,
},
{
name: "semantic-release publish",
filename: "../testdata/.github/workflows/github-workflow-packaging-semantic-release.yaml",
expected: true,
},
}
for _, tt := range tests {
tt := tt // Re-initializing variable so it is not changed while executing the closure below
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Copyright 2022 Security Scorecard Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: semantic-release
run: npx -p @semantic-release/git semantic-release
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit c2b55df

Please sign in to comment.