From 68f9e8087340d0a71bac435a41313184e2ae3e24 Mon Sep 17 00:00:00 2001 From: ben Date: Mon, 2 Feb 2026 03:38:32 +0000 Subject: [PATCH] Add workflow to check runner IP address --- .gitea/workflows/ip-check.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/ip-check.yml diff --git a/.gitea/workflows/ip-check.yml b/.gitea/workflows/ip-check.yml new file mode 100644 index 0000000..d41c621 --- /dev/null +++ b/.gitea/workflows/ip-check.yml @@ -0,0 +1,24 @@ +name: Check Runner IP Address + +on: + push: + paths: + - '.gitea/workflows/ip-check.yml' + workflow_dispatch: + +jobs: + check-ip: + runs-on: ubuntu + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Get runner IP address + run: | + echo "Runner IP address:" + curl ip.sb + + echo "\nAdditional network information:" + hostname -I + whoami + uname -a