Merge pull request #1104 from yutkat/dev

Update CI
pull/1105/head
Yuta Katayama 8 months ago committed by GitHub
commit 1a3199a7a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,9 +1,8 @@
#!/bin/bash
filename="/tmp/repos.txt"
filename="$1"
output="archived_check_list.txt"
lines_per_chunk=100
grep '](https://github.com' [a-z]*.md | sed -re 's/^.*\]\(https:\/\/github.com\/([^\)]*).*/\1/' > $filename
if [ -e "$output" ]; then
rm "$output"

@ -18,7 +18,8 @@ jobs:
apt update
apt-get install -y gh jq ca-certificates curl
- run: >
./.github/scripts/archive_check.sh
grep '](https://github.com' [a-z]*.md | sed -re 's/^.*\]\(https:\/\/github.com\/([^\)]*).*/\1/' > /tmp/repos.txt
./.github/scripts/archive_check.sh /tmp/repos.txt
env:
GH_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- run: >

Loading…
Cancel
Save