A general Debian image for Woodpecker CI with a bash to execute commands.
  • Shell 65.2%
  • Dockerfile 34.8%
Find a file
renovate-bot daac78e21c
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/tag/release Pipeline was successful
ci/woodpecker/cron/vulnerability Pipeline was successful
ci/woodpecker/cron/auto_merge Pipeline was successful
ci/woodpecker/cron/renovate Pipeline was successful
Update all dependencies (#11)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| docker.io/library/debian | final | digest | `ed87500` → `1275c56` |

---

### Configuration

📅 **Schedule**: (UTC)

- Branch creation
  - At any time (no schedule defined)
- Automerge
  - At any time (no schedule defined)

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMjAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjIyMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Reviewed-on: #11
2026-06-13 12:58:17 +00:00
.gitignore initial commit 2026-03-01 20:43:44 +01:00
.markdownlint.json Initial commit 2026-03-01 20:29:42 +01:00
.prettierrc Initial commit 2026-03-01 20:29:42 +01:00
.trivyignore Add .trivyignore 2026-06-13 08:21:24 +00:00
build.sh remove script file 2026-04-09 12:06:56 +02:00
Containerfile Update all dependencies (#11) 2026-06-13 12:58:17 +00:00
LICENSE add license 2026-04-11 13:49:41 +02:00
README.md add script option 2026-04-09 11:09:48 +02:00
renovate.json remove woodpecker jobs, renovate open one PR 2026-04-11 01:02:38 +02:00
test.sh forgejo-move (#4) 2026-03-23 18:10:43 +00:00

Generic Woodpecker CI plugin

This is a Debian based image where commands can be executed in bash. Before command execution, the envvars file is read if exists.

Usage

It can be used at any event.

steps:
  - name: Execute commands
    image: code.thinkaboutit.tech/pandora/generic.woodpecker
    settings:
      commands:
        - ls -l
        - whoami
      script: |
        FOO=value
        echo $$FOO
      debug: true

Settings

Name Default value Description
commands commands that are executed in new shell after each other
script script is saved and run by bash