https://github.com/prometheus/promci
GitHub Actions repository
https://github.com/prometheus/promci
Last synced: about 1 month ago
JSON representation
GitHub Actions repository
- Host: GitHub
- URL: https://github.com/prometheus/promci
- Owner: prometheus
- License: apache-2.0
- Created: 2022-10-10T08:34:02.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-03-26T10:02:09.000Z (about 2 months ago)
- Last Synced: 2026-03-26T20:50:25.940Z (about 2 months ago)
- Size: 125 KB
- Stars: 4
- Watchers: 7
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Prometheus Github Actions
Set of GitHub actions shared by GitHub projects in the Prometheus Ecosystem.
### Usage
```yaml
jobs:
build:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- uses: prometheus/promci/build@ # v0.6.0
publish_main:
needs: [build]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: prometheus/promci/publish_main@ # v0.6.0
with:
docker_hub_login: ${{ secrets.docker_hub_login }}
docker_hub_password: ${{ secrets.docker_hub_password }}
quay_io_login: ${{ secrets.quay_io_login }}
quay_io_password: ${{ secrets.quay_io_password }}
publish_release:
needs: [build]
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: prometheus/promci/publish_release@ # v0.6.0
with:
docker_hub_login: ${{ secrets.docker_hub_login }}
docker_hub_password: ${{ secrets.docker_hub_password }}
quay_io_login: ${{ secrets.quay_io_login }}
quay_io_password: ${{ secrets.quay_io_password }}
github_token: ${{ secrets.PROMBOT_GITHUB_TOKEN }}
```