2020-10-28 18:10:51 +00:00
|
|
|
on:
|
2020-11-02 18:11:48 +00:00
|
|
|
schedule:
|
|
|
|
- cron: '49 8 * * 1'
|
2020-10-28 18:10:51 +00:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
name: release-please
|
|
|
|
jobs:
|
|
|
|
release-please:
|
2020-10-30 20:46:03 +00:00
|
|
|
env:
|
|
|
|
ENABLE_AUTO_APPROVE: ${{ secrets.ENABLE_AUTO_APPROVE }}
|
2020-12-02 01:09:27 +00:00
|
|
|
ENABLE_RELEASE_PLEASE: ${{ secrets.ENABLE_RELEASE_PLEASE }}
|
2020-10-28 18:10:51 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-10-30 20:46:03 +00:00
|
|
|
- name: ReleasePlease
|
2020-12-02 01:09:27 +00:00
|
|
|
if: ${{ env.ENABLE_RELEASE_PLEASE }}
|
2020-10-30 20:46:03 +00:00
|
|
|
uses: GoogleCloudPlatform/release-please-action@v2.5.7
|
2020-10-28 18:10:51 +00:00
|
|
|
with:
|
2020-10-29 22:51:04 +00:00
|
|
|
command: release-pr
|
2020-10-30 20:46:03 +00:00
|
|
|
token: ${{ secrets.YOSHI_CODE_BOT_TOKEN }}
|
2020-10-30 00:46:03 +00:00
|
|
|
fork: true
|
2020-10-28 18:10:51 +00:00
|
|
|
release-type: ruby
|
|
|
|
package-name: google-api-ruby-client
|
|
|
|
version-file: lib/google/apis/version.rb
|
|
|
|
monorepo-tags: true
|
|
|
|
bump-minor-pre-major: true
|
2020-10-30 20:46:03 +00:00
|
|
|
- name: AutoApprove
|
2020-12-02 01:09:27 +00:00
|
|
|
if: ${{ always() && env.ENABLE_RELEASE_PLEASE }}
|
2020-10-30 20:46:03 +00:00
|
|
|
uses: actions/github-script@v2
|
|
|
|
with:
|
|
|
|
github-token: ${{secrets.YOSHI_APPROVER_TOKEN}}
|
|
|
|
script: |
|
2020-11-02 21:16:35 +00:00
|
|
|
let found = false;
|
|
|
|
for (let tries = 3; tries > 0; tries--) {
|
|
|
|
await new Promise(r => setTimeout(r, 2000));
|
|
|
|
const prs = await github.pulls.list({
|
|
|
|
owner: 'googleapis',
|
|
|
|
repo: 'google-api-ruby-client',
|
|
|
|
state: 'open',
|
|
|
|
sort: 'created',
|
|
|
|
direction: 'desc',
|
|
|
|
per_page: 10
|
|
|
|
});
|
|
|
|
prs.data.forEach(function(pr) {
|
|
|
|
if (found || pr.user.login != "yoshi-code-bot" || !pr.title.startsWith("Release ")) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
core.info("AutoApprove: Found release PR " + pr.number);
|
|
|
|
if (process.env.ENABLE_AUTO_APPROVE) {
|
|
|
|
core.info("ENABLE_AUTO_APPROVE is set; labeling and approving");
|
|
|
|
github.pulls.createReview({
|
|
|
|
owner: 'googleapis',
|
|
|
|
repo: 'google-api-ruby-client',
|
|
|
|
body: "AutoApprove: Rubber stamped release!",
|
|
|
|
pull_number: pr.number,
|
|
|
|
event: "APPROVE"
|
|
|
|
});
|
|
|
|
github.issues.addLabels({
|
|
|
|
owner: 'googleapis',
|
|
|
|
repo: 'google-api-ruby-client',
|
|
|
|
issue_number: pr.number,
|
|
|
|
labels: ["autorelease: pending", "automerge", "kokoro:force-run"]
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
core.info("ENABLE_AUTO_APPROVE is not set; labeling release only");
|
|
|
|
github.issues.addLabels({
|
|
|
|
owner: 'googleapis',
|
|
|
|
repo: 'google-api-ruby-client',
|
|
|
|
issue_number: pr.number,
|
|
|
|
labels: ["autorelease: pending", "kokoro:force-run"]
|
|
|
|
});
|
|
|
|
}
|
|
|
|
core.info("AutoApprove: complete!");
|
|
|
|
found = true;
|
|
|
|
tries = 0;
|
|
|
|
});
|
|
|
|
}
|
2020-10-30 20:46:03 +00:00
|
|
|
if (!found) {
|
2020-11-02 21:16:35 +00:00
|
|
|
core.setFailed("Unable to find release PR after 3 tries.");
|
2020-10-30 20:46:03 +00:00
|
|
|
}
|