Skip to content

Wrong formating in German Translation of bold text #113

Wrong formating in German Translation of bold text

Wrong formating in German Translation of bold text #113

Workflow file for this run

name: Softfix workflow
on:
issue_comment:
types: [created]
permissions:
pull-requests: write
contents: write
jobs:
softfix:
name: Softfix action
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/softfix')
runs-on: ubuntu-latest
steps:
- name: Check if commenter is maintainer
id: check-maintainer
uses: actions/github-script@v7
with:
script: |
const response = await github.rest.repos.getCollaboratorPermissionLevel({
owner: context.repo.owner,
repo: context.repo.repo,
username: context.payload.comment.user.login
});
const isMaintainer = ['admin', 'write'].includes(response.data.permission);
return isMaintainer;
- name: Checkout repository
if: steps.check-maintainer.outputs.result == 'true'
uses: actions/checkout@v4
- name: Softfix
if: steps.check-maintainer.outputs.result == 'true'
uses: daschuer/softfix@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}