Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Mafyuh/iac
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 199b28c0bd6658a7eed38bd8652d82ee3c9e5e79
Choose a base ref
..
head repository: Mafyuh/iac
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d7056a0b455bdeb8a17f36978071f08aef9aef75
Choose a head ref
Showing with 7 additions and 5 deletions.
  1. +6 −4 .forgejo/workflows/yamllint.yml
  2. +1 −1 docker/arm/docker-compose.yml
10 changes: 6 additions & 4 deletions .forgejo/workflows/yamllint.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
name: Lint on PR

on:
pull_request:
types: [opened, synchronize, reopened]
@@ -15,16 +17,16 @@ jobs:
- name: Get modified YAML files
id: get_changed_files
run: |
CHANGED_FILES=$(git diff --name-only HEAD^ HEAD | grep -E '\.(yml)$' || true)
echo "CHANGED_FILES=$CHANGED_FILES" >> $GITHUB_ENV
CHANGED_FILES=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }} | grep -E '\.(yml)$' || true)
echo "CHANGED_FILES=$CHANGED_FILES" >> $GITHUB_ENV
- name: Run yamllint on modified files
if: env.CHANGED_FILES != ''
run: |
yamllint $CHANGED_FILES
yamllint $CHANGED_FILES
env:
CHANGED_FILES: ${{ env.CHANGED_FILES }}

- name: Skip linting if no YAML files are changed
if: env.CHANGED_FILES == ''
run: echo "No YAML files changed in this PR. Skipping lint."
run: echo "No YAML files changed in this PR. Skipping lint."
2 changes: 1 addition & 1 deletion docker/arm/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
services:
server:
image: codeberg.org/forgejo/forgejo:9.0.3
image: codeberg.org/forgejo/forgejo:9.0.2
container_name: forgejo
environment:
- USER_UID=1000