We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi, i guess the current example of .gitlab-ci.yml has syntax errors
.gitlab-ci.yml
stages: - comment - release before_script: yarn --frozen-lockfile comment: image: node:lts-alpine stage: comment # only: merge_requests #fixed only: - merge_requests script: yarn changesets-gitlab comment release: image: node:lts-alpine stage: release # added # only: main # fixed only: - main script: yarn changesets-gitlab variables: INPUT_PUBLISH: yarn release
Fixing this way solved syntax errors for me. I can create a PR for this if you don't mind
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hi, i guess the current example of
.gitlab-ci.yml
has syntax errorsFixing this way solved syntax errors for me. I can create a PR for this if you don't mind
The text was updated successfully, but these errors were encountered: