publiccode.yml update #143
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publiccode.yml update | |
on: | |
schedule: | |
- cron: '30 22 * * 5' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: publiccode-softwareversion-check-action | |
uses: italia/[email protected] | |
id: pva | |
with: | |
remoterepo: "https://git.libreoffice.org/core" | |
remove: "libreoffice-" | |
filter: "^libreoffice-([0-9]|\\.)+$" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
if: failure() | |
with: | |
title: "feat: update softwareVersion ${{ steps.pva.outputs.version }} and date in publiccode.yml" | |
branch: feature/publiccode-${{ steps.pva.outputs.version }} |