-
Notifications
You must be signed in to change notification settings - Fork 130
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
Setup workflows for OpenAPI code generation #366
Conversation
4a52164
to
10e1520
Compare
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.
thank you! Please create line-openapi-update
label before merge.
.github/workflows/generate-code.yml
Outdated
- name: Set up Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' |
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.
probably we can remove this. python is installed in default github action runner. (sorry I can't find url...)
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.
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.
Can you modify a workflow for testing to resolve #304 ?
To resolve this, I think running line-bot-sdk-ruby/.github/workflows/pull_request.yml Lines 21 to 24 in 01d06cc
|
renovate.json5
Outdated
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended" |
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.
please add "helpers:pinGitHubActionDigestsToSemver"
in extends
!
ref: https://github.com/line/line-bot-sdk-ruby/pull/405/files
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.
tests: | ||
name: Generate OpenAPI based code | ||
runs-on: ubuntu-latest | ||
|
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.
can you add
permissions:
contents: write
pull-requests: write
explicitly?
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.
.github/workflows/generate-code.yml
Outdated
|
||
steps: | ||
# Setup | ||
- uses: actions/checkout@v4 |
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.
can you run pinact run -u
to pin commit hash of github actions in your local?
(brew install pinact
is required)
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.
71533b4
to
d574ea8
Compare
2364a77
to
285e549
Compare
@Yang-33 I am very sorry for the pause! Please re-review. |
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.
Thank you!
https://github.com/line/line-bot-sdk-ruby/actions/runs/14186695823 CI passed after merging this |
resolve #304 #346 #346 and #361
The following code has been added and updated based on code in other languages.