Merge branch 'master' into upstream-merge-9510

This commit is contained in:
cadyn
2021-02-27 13:19:51 -08:00
committed by GitHub
2 changed files with 2 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
name: Autochangelog name: Autochangelog
on: on:
pull_request: pull_request_target:
types: closed types: closed
branches: branches:
- master - master
@@ -15,16 +15,10 @@ jobs:
if: github.event.pull_request.merged == true if: github.event.pull_request.merged == true
steps: steps:
- uses: /actions/checkout@v2 - uses: /actions/checkout@v2
<<<<<<< HEAD
||||||| parent of 2ee78f6369... Merge pull request #9510 from VOREStation/upstream-merge-7809
with:
ref: master
=======
with: with:
ref: master ref: master
- name: Update repository to master - name: Update repository to master
run: git pull "origin" master run: git pull "origin" master
>>>>>>> 2ee78f6369... Merge pull request #9510 from VOREStation/upstream-merge-7809
- name: Ensure +x on CI directory - name: Ensure +x on CI directory
run: | run: |
chmod -R +x ./tools/ci chmod -R +x ./tools/ci

View File

@@ -63,13 +63,7 @@ new = 0
print('Reading changelogs...') print('Reading changelogs...')
for line in args.pr_body.splitlines(): for line in args.pr_body.splitlines():
print(f"Checking line '{line}'") print(f"Checking line '{line}'")
<<<<<<< HEAD
if line[0] == "🆑": # Find the start of the changelog
||||||| parent of 2ee78f6369... Merge pull request #9510 from VOREStation/upstream-merge-7809
if line[:1] == "??": # Find the start of the changelog
=======
if line[:1] == "🆑": # Find the start of the changelog if line[:1] == "🆑": # Find the start of the changelog
>>>>>>> 2ee78f6369... Merge pull request #9510 from VOREStation/upstream-merge-7809
print("Found opening :cl: tag") print("Found opening :cl: tag")
if incltag == True: # If we're already reading logs, skip if incltag == True: # If we're already reading logs, skip
continue continue
@@ -87,7 +81,7 @@ for line in args.pr_body.splitlines():
continue continue
# If we hit a /cl, we're no longer reading logs # If we hit a /cl, we're no longer reading logs
elif line == "/🆑": elif line == "/??":
print("Found closing /:cl: tag") print("Found closing /:cl: tag")
incltag = False incltag = False