Added todo test
Some checks failed
Create issues from TODOs / todos (push) Failing after 7s

This commit is contained in:
Doc
2025-10-08 21:16:06 -04:00
parent f957bf75bb
commit fcb9d339c5
2 changed files with 45 additions and 4 deletions

View File

@@ -8,10 +8,10 @@ on:
required: false
type: boolean
description: Enable, if you want to import all TODOs. Runs on checked out branch! Only use if you're sure what you are doing.
# push:
# branches: # do not set multiple branches, todos might be added and then get referenced by themselves in case of a merge
# - main
# - master
push:
branches: # do not set multiple branches, todos might be added and then get referenced by themselves in case of a merge
- main
- master
permissions:
issues: write
@@ -25,9 +25,15 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Print environment
run: |
echo "=== ENVIRONMENT ==="
printenv
- name: Run Issue Bot
uses: juulsn/todo-issue@main
with:
excludePattern: '^(node_modules/)'
env:
ACTIONS_STEP_DEBUG: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

35
gather-info.sh Normal file
View File

@@ -0,0 +1,35 @@
#!/bin/env bash
INFOFILE=info-gather-OCT8-1.txt
OUTFILE=~/${INFOFILE}
touch $OUTFILE
if [ ! -w ${OUTFILE} ]; then
echo -e "\n\nERROR: Unable to open output file for writing. Exiting\n"
exit 1
fi
getinfo() {
echo "Datetime: $(date)"
echo "User: $(id -un) ($(id -u))"
echo ""
echo "=== DKMS status ==="
dkms status
echo ""
echo "=== Listings ==="
for thepath in /var/lib/dkms /var/lib/dkms/nvidia /var/lib/dkms/akvcam/* ; do
echo ""
echo "--- $thepath ---"
ls -lAh $thepath
done
}
echo "" > $OUTFILE
getinfo | tee $OUTFILE
echo -e "\n\nPlease share the file ${OUTFILE} with me."