mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-09-22 19:16:36 -04:00
* Add zizmor workflow for action security checks https://docs.zizmor.sh/integrations/#github-actions https://github.com/zizmorcore/zizmor-action To avoid pushing unsafe actions and also for performing the scan automatically on each zizmor upgrade, in case there are any new unsafe behaviors to find. * Zizmor fixes * Set dependabot cooldowns to 7 days * Fix workflow concurrency and improve code quality * Use pedantic persona in zizmor workflow
35 lines
867 B
YAML
35 lines
867 B
YAML
name: Update Docker Hub description
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- Docker/README.md
|
|
branches:
|
|
- edge
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: update-dockerhub-description
|
|
cancel-in-progress: false # Queue the description updates
|
|
|
|
jobs:
|
|
dockerhub-description:
|
|
name: dockerhub-description
|
|
if: github.repository_owner == 'FreshRSS'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Update repo description
|
|
uses: peter-evans/dockerhub-description@1b9a80c056b620d92cedb9d9b5a223409c68ddfa
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
repository: freshrss/freshrss
|
|
readme-filepath: Docker/README.md
|