parent
d797339202
commit
c3a6165307
10
.github/workflows/hacktoberfest-accepted.yml
vendored
10
.github/workflows/hacktoberfest-accepted.yml
vendored
@ -36,15 +36,15 @@ jobs:
|
|||||||
- name: Search relevant commit message lines starting with Closes/Merges
|
- name: Search relevant commit message lines starting with Closes/Merges
|
||||||
run: |
|
run: |
|
||||||
git log --format=email ${{ github.event.before }}..${{ github.event.after }} | \
|
git log --format=email ${{ github.event.before }}..${{ github.event.after }} | \
|
||||||
egrep -i "^Close[sd]? " | sort | uniq | tee log
|
grep -Ei "^Close[sd]? " | sort | uniq | tee log
|
||||||
if: steps.check.outputs.label == 'hacktoberfest'
|
if: steps.check.outputs.label == 'hacktoberfest'
|
||||||
|
|
||||||
- name: Search for Number-based PR references
|
- name: Search for Number-based PR references
|
||||||
run: |
|
run: |
|
||||||
egrep -o "#([0-9]+)" log | cut -d# -f2 | sort | uniq | xargs -t -n1 -I{} \
|
grep -Eo "#([0-9]+)" log | cut -d# -f2 | sort | uniq | xargs -t -n1 -I{} \
|
||||||
gh pr view {} --json number,createdAt \
|
gh pr view {} --json number,createdAt \
|
||||||
--jq '{number, opened: .createdAt} | [.number, .opened] | join(":")' | tee /dev/stderr | \
|
--jq '{number, opened: .createdAt} | [.number, .opened] | join(":")' | tee /dev/stderr | \
|
||||||
egrep -o '^([0-9]+):[0-9]{4}-(09-30T|10-|11-01T)' | cut -d: -f1 | sort | uniq | xargs -t -n1 -I {} \
|
grep -Eo '^([0-9]+):[0-9]{4}-(09-30T|10-|11-01T)' | cut -d: -f1 | sort | uniq | xargs -t -n1 -I {} \
|
||||||
gh pr edit {} --add-label 'hacktoberfest-accepted'
|
gh pr edit {} --add-label 'hacktoberfest-accepted'
|
||||||
if: steps.check.outputs.label == 'hacktoberfest'
|
if: steps.check.outputs.label == 'hacktoberfest'
|
||||||
env:
|
env:
|
||||||
@ -52,10 +52,10 @@ jobs:
|
|||||||
|
|
||||||
- name: Search for URL-based PR references
|
- name: Search for URL-based PR references
|
||||||
run: |
|
run: |
|
||||||
egrep -o "github.com/(.+)/(.+)/pull/([0-9]+)" log | sort | uniq | xargs -t -n1 -I{} \
|
grep -Eo "github.com/(.+)/(.+)/pull/([0-9]+)" log | sort | uniq | xargs -t -n1 -I{} \
|
||||||
gh pr view "https://{}" --json number,createdAt \
|
gh pr view "https://{}" --json number,createdAt \
|
||||||
--jq '{number, opened: .createdAt} | [.number, .opened] | join(":")' | tee /dev/stderr | \
|
--jq '{number, opened: .createdAt} | [.number, .opened] | join(":")' | tee /dev/stderr | \
|
||||||
egrep -o '^([0-9]+):[0-9]{4}-(09-30T|10-|11-01T)' | cut -d: -f1 | sort | uniq | xargs -t -n1 -I {} \
|
grep -Eo '^([0-9]+):[0-9]{4}-(09-30T|10-|11-01T)' | cut -d: -f1 | sort | uniq | xargs -t -n1 -I {} \
|
||||||
gh pr edit {} --add-label 'hacktoberfest-accepted'
|
gh pr edit {} --add-label 'hacktoberfest-accepted'
|
||||||
if: steps.check.outputs.label == 'hacktoberfest'
|
if: steps.check.outputs.label == 'hacktoberfest'
|
||||||
env:
|
env:
|
||||||
|
|||||||
1
.mailmap
1
.mailmap
@ -95,3 +95,4 @@ rzrymiak on github <106121613+rzrymiak@users.noreply.github.com>
|
|||||||
Oliver Roberts <oliver@futaura.co.uk>
|
Oliver Roberts <oliver@futaura.co.uk>
|
||||||
opensignature on github <antonio@piumarossa.it>
|
opensignature on github <antonio@piumarossa.it>
|
||||||
Cering on github <gfypm@qq.com>
|
Cering on github <gfypm@qq.com>
|
||||||
|
a1346054 on github <36859588+a1346054@users.noreply.github.com>
|
||||||
|
|||||||
@ -83,12 +83,12 @@ if test $PPC64_NEEDED -gt 0
|
|||||||
then
|
then
|
||||||
SDK64=10.5
|
SDK64=10.5
|
||||||
ARCHES64='-arch x86_64 -arch ppc64'
|
ARCHES64='-arch x86_64 -arch ppc64'
|
||||||
SDK64=`ls $SDK_PATH|grep 10.5|head -1`
|
SDK64=`ls $SDK_PATH | grep "10\.5" | head -1`
|
||||||
else
|
else
|
||||||
ARCHES64='-arch x86_64'
|
ARCHES64='-arch x86_64'
|
||||||
#We "know" that 10.4 and earlier do not support 64bit
|
#We "know" that 10.4 and earlier do not support 64bit
|
||||||
OLD_SDK64=`ls $SDK_PATH|egrep -v "10.[0-4]"|head -1`
|
OLD_SDK64=`ls $SDK_PATH | grep -v "10\.[0-4]" | head -1`
|
||||||
NEW_SDK64=`ls -r $SDK_PATH|egrep -v "10.[0-4][^0-9]" | head -1`
|
NEW_SDK64=`ls -r $SDK_PATH | grep -v "10\.[0-4][^0-9]" | head -1`
|
||||||
if test $USE_OLD -gt 0
|
if test $USE_OLD -gt 0
|
||||||
then
|
then
|
||||||
SDK64=$OLD_SDK64
|
SDK64=$OLD_SDK64
|
||||||
|
|||||||
@ -63,7 +63,7 @@ fi
|
|||||||
git -C ../curl-www log --pretty=full --use-mailmap $start..HEAD
|
git -C ../curl-www log --pretty=full --use-mailmap $start..HEAD
|
||||||
fi
|
fi
|
||||||
) | \
|
) | \
|
||||||
egrep -ai '(^Author|^Commit|by):' | \
|
grep -Eai '(^Author|^Commit|by):' | \
|
||||||
cut -d: -f2- | \
|
cut -d: -f2- | \
|
||||||
cut '-d(' -f1 | \
|
cut '-d(' -f1 | \
|
||||||
cut '-d<' -f1 | \
|
cut '-d<' -f1 | \
|
||||||
|
|||||||
@ -55,7 +55,7 @@ cat ./docs/THANKS
|
|||||||
fi
|
fi
|
||||||
) | \
|
) | \
|
||||||
|
|
||||||
egrep -ai '(^Author|^Commit|by):' | \
|
grep -Eai '(^Author|^Commit|by):' | \
|
||||||
cut -d: -f2- | \
|
cut -d: -f2- | \
|
||||||
cut '-d(' -f1 | \
|
cut '-d(' -f1 | \
|
||||||
cut '-d<' -f1 | \
|
cut '-d<' -f1 | \
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user