-
Notifications
You must be signed in to change notification settings - Fork 25
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
Remove deprecated inputs #1823
Remove deprecated inputs #1823
Conversation
@@ -101,5 +101,3 @@ jobs: | |||
with: | |||
retry_wait_seconds: 1 | |||
command: ${{ inputs.command }} | |||
# TODO: any reason we dont retry on errors AND timeouts? (any) | |||
retry_on: error |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing this will default to any
error. We had an example this morning where a NUT did not re-run because of a timeout https://github.com/salesforcecli/cli/actions/runs/10209026168/job/28246609426
@@ -20,7 +20,6 @@ jobs: | |||
make-pr-for-nightly: | |||
env: | |||
GITHUB_TOKEN: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} | |||
SF_HIDE_RELEASE_NOTES: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a global org env now
What does this PR do?
Removes unused inputs. Now that we only have
sf
we do not need to pass in the cliMoves inputs and steps to
env
Merge after salesforcecli/github-workflows#124
@W-16223935@