添加软件[Add App] Lesspass #51
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
name: Issue to PullRequest | |
on: | |
issues: | |
types: [opened,reopened] | |
jobs: | |
issue-pr: | |
runs-on: | |
- ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: get issue then push to pending | |
env: | |
GITHUB_ISSUEBODY: ${{ github.event.issue.body }} | |
GITHUB_ISSUENUM: ${{ github.event.issue.number }} | |
run: | | |
git checkout -b pending#$GITHUB_ISSUENUM origin/master | |
git push origin pending#$GITHUB_ISSUENUM | |
PYTHONPATH=./scripts/make/ python ./scripts/make/make_appconfig_converter.py "$GITHUB_ISSUEBODY" | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git add rules/* | |
git commit -m "resolved #"$GITHUB_ISSUENUM"" | |
git branch --set-upstream-to=origin/pending#$GITHUB_ISSUENUM | |
git push | |
- name: create pr from pending to master | |
env: | |
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }} | |
GITHUB_ISSUENUM: ${{ github.event.issue.number }} | |
run: | | |
gh pr create --base master --head pending#$GITHUB_ISSUENUM --title "resolved #"$GITHUB_ISSUENUM"" --body "resolved #"$GITHUB_ISSUENUM"" |