mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-27 18:06:53 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.1 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v5.0.1...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
911 B
YAML
29 lines
911 B
YAML
name: collabora-update
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '00 12 * * *'
|
|
|
|
jobs:
|
|
collabora-update:
|
|
name: update collabora
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6.0.0
|
|
- name: Run collabora-profile-update
|
|
run: |
|
|
rm -f php/cool-seccomp-profile.json
|
|
wget https://raw.githubusercontent.com/CollaboraOnline/online/refs/heads/master/docker/cool-seccomp-profile.json
|
|
mv cool-seccomp-profile.json php/
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7
|
|
with:
|
|
commit-message: collabora-seccomp-update automated change
|
|
signoff: true
|
|
title: collabora seccomp update
|
|
body: Automated collabora seccomp profile update
|
|
labels: dependencies, 3. to review
|
|
milestone: next
|
|
branch: collabora-seccomp-update
|