Skip to content

Localisation updates from https://translatewiki.net. #4321

Localisation updates from https://translatewiki.net.

Localisation updates from https://translatewiki.net. #4321

Workflow file for this run

name: Danger
on:
pull_request_target:
types: [opened, synchronize]
permissions:
pull-requests: write
statuses: write
jobs:
danger:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
fetch-depth: 0
- name: Setup ruby
uses: ruby/setup-ruby@95ef2b042f9d7a56d8268cba8559e2842e2ad01b # v1.321.0
with:
ruby-version: 3.3
bundler-cache: true
- name: Create base branch
env:
BASE_CLONE_URL: ${{ github.event.pull_request.base.repo.clone_url }}
BASE_SHA: ${{ github.event.pull_request.base.sha }}
run: |
git fetch "$BASE_CLONE_URL" "$BASE_SHA:danger_base"
- name: Create head branch
env:
HEAD_CLONE_URL: ${{ github.event.pull_request.head.repo.clone_url }}
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
run: |
git fetch "$HEAD_CLONE_URL" "$HEAD_SHA:danger_head"
- name: Danger
env:
DANGER_GITHUB_BEARER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
bundle exec danger --verbose