This commit is contained in:
@@ -8,10 +8,10 @@ on:
|
|||||||
required: false
|
required: false
|
||||||
type: boolean
|
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.
|
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:
|
push:
|
||||||
# branches: # do not set multiple branches, todos might be added and then get referenced by themselves in case of a merge
|
branches: # do not set multiple branches, todos might be added and then get referenced by themselves in case of a merge
|
||||||
# - main
|
- main
|
||||||
# - master
|
- master
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
issues: write
|
issues: write
|
||||||
@@ -25,9 +25,15 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Print environment
|
||||||
|
run: |
|
||||||
|
echo "=== ENVIRONMENT ==="
|
||||||
|
printenv
|
||||||
|
|
||||||
- name: Run Issue Bot
|
- name: Run Issue Bot
|
||||||
uses: juulsn/todo-issue@main
|
uses: juulsn/todo-issue@main
|
||||||
with:
|
with:
|
||||||
excludePattern: '^(node_modules/)'
|
excludePattern: '^(node_modules/)'
|
||||||
env:
|
env:
|
||||||
|
ACTIONS_STEP_DEBUG: true
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
35
gather-info.sh
Normal file
35
gather-info.sh
Normal 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."
|
||||||
Reference in New Issue
Block a user