Revert vtpool for ResourceExhausted problem (#2255) #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Copyright (C) 2019-2023 vdaas.org vald team <[email protected]> | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# You may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# https://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
name: "Update PULL_REQUEST_TEMPLATE and ISSUE_TEMPLATE" | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "versions/GO_VERSION" | |
- "versions/NGT_VERSION" | |
- "versions/KUBECTL_VERSION" | |
jobs: | |
dump-contexts-to-log: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/dump-context | |
update-pr-issue-template: | |
name: Update PULL_REQUEST_TEMPLATE and ISSUE_TEMPLATE | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set Git config | |
run: | | |
git config --global --add safe.directory ${GITHUB_WORKSPACE} | |
- uses: crazy-max/ghaction-import-gpg@v4 | |
with: | |
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} | |
git_user_signingkey: true | |
git_commit_gpgsign: true | |
- name: Push to main | |
run: | | |
TIMESTAMP=$(date +%Y%m%d_%H%M%S_%3N) | |
BRANCH_NAME="documentation/pull_request_and_issue_template/update_versions_${TIMESTAMP}" | |
git checkout main | |
git checkout -b ${BRANCH_NAME} | |
make update/template | |
if git diff --quiet --exit-code; then | |
echo "Nothing updated" | |
exit 0 | |
fi | |
git add .github/PULL_REQUEST_TEMPLATE.md .github/ISSUE_TEMPLATE/bug_report.md .github/ISSUE_TEMPLATE/security_issue_report.md | |
git commit -S --signoff -m ":robot: Automatically update PULL_REQUEST_TEMPLATE and ISSUE_TEMPLATE" | |
git remote set-url origin "https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" | |
git push -u origin ${BRANCH_NAME} | |
curl --include --verbose --fail \ | |
-H "Accept: application/json" \ | |
-H "Content-Type:application/json" \ | |
-H "Authorization: token ${GITHUB_TOKEN}" \ | |
--request POST \ | |
--data "{\"title\": \"Update PULL_REQUEST_TEMPLATE and ISSUE_TEMPLATE\", \"head\": \"${BRANCH_NAME}\", \"base\": \"main\", \"body\": \"PULL_REQUEST_TEMPLATE and ISSUE_TEMPLATE are updated.\", \"maintainer_can_modify\": true}" \ | |
$API_URL | |
env: | |
GITHUB_USER: ${{ secrets.DISPATCH_USER }} | |
GITHUB_TOKEN: ${{ secrets.DISPATCH_TOKEN }} | |
API_URL: https://api.github.com/repos/vdaas/vald/pulls |