-
Notifications
You must be signed in to change notification settings - Fork 1
Dev/main to Main #75
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
Dev/main to Main #75
Conversation
…sudo for vscode user
Some were running over this, which they shouldn't
chore: Updates workflow names for consistency in Github UI.
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.
Copilot reviewed 51 out of 55 changed files in this pull request and generated 1 comment.
Files not reviewed (4)
- .devcontainer/Dockerfile: Language not supported
- .devcontainer/devcontainer.json: Language not supported
- .github/workflows/jm-sync-with-upstream.yml: Language not supported
- api/package.json: Language not supported
.github/workflows/jm-build-only.yml
Outdated
ref: ${{ github.event.inputs.branch || 'main' }} | ||
# For manual runs: Use ref if provided, otherwise use branch | ||
# For automated runs: Use the triggering ref | ||
ref: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.ref || github.event.inputs.branch) || github.ref }} |
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.
The conditional expression for selecting the git ref may be ambiguous; consider adding explicit parentheses to ensure the intended evaluation order.
ref: ${{ github.event_name == 'workflow_dispatch' && (github.event.inputs.ref || github.event.inputs.branch) || github.ref }} | |
ref: ${{ (github.event_name == 'workflow_dispatch' && (github.event.inputs.ref || github.event.inputs.branch)) || github.ref }} |
Copilot uses AI. Check for mistakes.
The promote-admin script needs to be tested with npm running in docker before we finish the merge |
Renames workflows for consistency and clarity in Github UI
Adds promote-admin script to npm scripts
Adds
-f
option to promot-admin script.