Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/github-script from 3 to 7 #82

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions action.yml
Expand Up @@ -92,21 +92,21 @@ runs:

- name: "Check if User or Organization is set"
if: inputs.organization == '' && inputs.user == ''
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
script: |
core.setFailed('either user or organization is not specified.')

- name: "Check if User and Organization are set"
if: inputs.organization != '' && inputs.user != ''
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
script: |
core.setFailed('user and organization field is set. Only one is supported.')

- name: "Check if operation_mode is set and custom_field_values is not null"
if: inputs.operation_mode == 'custom_field' && inputs.custom_field_values == ''
uses: actions/github-script@v3
uses: actions/github-script@v7
with:
script: |
core.setFailed('operation mode is set to custom_field but custom_field_values is not set.')
Expand Down