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
./.github/workflows
openedx
edx
What we want: https://github.com/openedx/acid-block/blob/1f76d2860013cb2e046bb1659c5c74b76775b50c/.github/workflows/commitlint.yml#L10
What we don't want: https://github.com/openedx/api-doc-tools/blob/81edb71fd132a66280be3af822c88e224bfb4f83/.github/workflows/commitlint.yml#L10
GitHub search can be used to find offending examples, e.g.: https://github.com/search?q=%22edx%2F.github%2F.github%2Fworkflows%2Fcommitlint%22+org%3Aopenedx&type=code
If we want to automate this, we could use @feanil 's new repo checks framework. Specifically, we add a Check subclass that:
is_relevant(...)
True
check(...)
"uses: edx/"
.github
fix(...)
"uses: openedx/"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Context
./.github/workflows
) exist in both this repo and in the edx version of this repo.Acceptance Criteria
openedx
organization, not theedx
organization.Examples
What we want: https://github.com/openedx/acid-block/blob/1f76d2860013cb2e046bb1659c5c74b76775b50c/.github/workflows/commitlint.yml#L10
What we don't want: https://github.com/openedx/api-doc-tools/blob/81edb71fd132a66280be3af822c88e224bfb4f83/.github/workflows/commitlint.yml#L10
Notes
GitHub search can be used to find offending examples, e.g.: https://github.com/search?q=%22edx%2F.github%2F.github%2Fworkflows%2Fcommitlint%22+org%3Aopenedx&type=code
If we want to automate this, we could use @feanil 's new repo checks framework. Specifically, we add a Check subclass that:
is_relevant(...)
method, returnedTrue
;check(...)
method, searched for the substring"uses: edx/"
within all YAML files in the.github
directory;fix(...)
method, opened a PR to replace"uses: edx/"
with"uses: openedx/"
.The text was updated successfully, but these errors were encountered: