diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index fead572..6908667 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -14,11 +14,9 @@ on: jobs: changelog: runs-on: ubuntu-latest - strategy: - fail-fast: false steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 2 diff --git a/.github/workflows/markdown.yaml b/.github/workflows/markdown.yaml index ae83163..ce1d1e4 100644 --- a/.github/workflows/markdown.yaml +++ b/.github/workflows/markdown.yaml @@ -22,19 +22,20 @@ name: Markdown on: pull_request: + paths: &paths + - "**/*.md" push: branches: - main - develop + paths: *paths jobs: markdown-lint: runs-on: ubuntu-latest - strategy: - fail-fast: false steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Create docker network run: | diff --git a/.github/workflows/project.yaml b/.github/workflows/project.yaml index 04730fb..3b94585 100644 --- a/.github/workflows/project.yaml +++ b/.github/workflows/project.yaml @@ -2,6 +2,8 @@ name: Project env: COMPOSE_USER: runner + # https://getcomposer.org/doc/03-cli.md#composer-auth + COMPOSER_AUTH: '{"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"} }' on: pull_request: diff --git a/.github/workflows/yaml.yaml b/.github/workflows/yaml.yaml index 631e525..4ed6ae3 100644 --- a/.github/workflows/yaml.yaml +++ b/.github/workflows/yaml.yaml @@ -22,16 +22,20 @@ name: YAML on: pull_request: + paths: &paths + - "**/*.yml" + - "**/*.yaml" push: branches: - main - develop + paths: *paths jobs: yaml-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Create docker network run: | diff --git a/.gitignore b/.gitignore index 457448d..8825adc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.idea composer.lock vendor/ diff --git a/.markdownlintignore b/.markdownlintignore index d143ace..6311097 100644 --- a/.markdownlintignore +++ b/.markdownlintignore @@ -5,8 +5,7 @@ vendor/ node_modules/ LICENSE.md -# Drupal -web/*.md -web/core/ -web/libraries/ -web/*/contrib/ + +# DDEV stuff +web/ +recipes/ diff --git a/compose.yaml b/compose.yaml index 13f1bcb..1a102e2 100644 --- a/compose.yaml +++ b/compose.yaml @@ -8,10 +8,10 @@ services: - ./:/md prettier: - # Prettier does not (yet, fcf. - # https://github.com/prettier/prettier/issues/15206) have an official - # docker image. - # https://hub.docker.com/r/jauderho/prettier is good candidate (cf. https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc) + # Prettier does not (yet, cf. + # https://github.com/prettier/prettier/issues/15206) have an official docker + # image. https://hub.docker.com/r/jauderho/prettier is good candidate (cf. + # https://hub.docker.com/search?q=prettier&sort=updated_at&order=desc) image: jauderho/prettier profiles: - dev