-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
LMBQ-267: Adding "XSS" to the Security spelling dictionary, centralized Add/Remove Label internal action
- Loading branch information
Showing
8 changed files
with
47 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Add/Remove Label | ||
description: > | ||
Runs buildsville/add-remove-label. Exists only to centralize which version of the action we use. Intentionally not | ||
documented in Actions.md since it's only meant for internal use. | ||
# Copied from https://github.com/buildsville/add-remove-label/blob/master/action.yml. | ||
inputs: | ||
token: | ||
description: 'github token' | ||
required: true | ||
default: '' | ||
labels: | ||
description: 'labels to edit' | ||
required: false | ||
default: '' | ||
label: | ||
description: 'label to edit' | ||
required: false | ||
default: '' | ||
type: | ||
description: 'add or remove' | ||
required: true | ||
default: '' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Add/Remove Label | ||
# v2.0.1 | ||
uses: buildsville/add-remove-label@ac59c9f0aeb66eb12d6366eb1d69ec1906e9ef9a | ||
with: | ||
token: ${{ inputs.token }} | ||
labels: ${{ inputs.labels }} | ||
label: ${{ inputs.label }} | ||
type: ${{ inputs.type }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,5 @@ clickjacking | |
nosniff | ||
softwaresecurityproject | ||
PII | ||
XSS | ||
Xss |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters