-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
workflows: Run urls-check in GitHub workflows #14795
Conversation
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.
Thanks! One fix necessary, then we can move this. I think we should also change urls-check to not create an issue at all if the check succeeds, that's just useless noise. It's enough if it files an issue on a broken check? (That's follow-up material, of course)
.github/workflows/urls-check.yml
Outdated
|
||
- name: Run urls-check action | ||
run: | | ||
make bots |
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.
That has the same problem, though?
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.
yeah, I fix it with the other commit. Should I do this the right way in the first commit?
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.
Ah, yes please, less confusing.
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.
done
.github/workflows/urls-check.yml
Outdated
steps: | ||
- name: Set up configuration and secrets | ||
run: | | ||
printf '[user]\n\tname = Cockpit Project\n\[email protected]\n' > ~/.gitconfig |
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 doesn't commit anything, so we don't strictly need a git config here.
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.
true, I'll drop it.
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.
done
|
That would first require autogen, lets just use `tools/make-bots` instead.
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.
Yay, thanks!
Also fixing bug why no po-refresh and npm-update were triggered.
Tried it on my own fork.