1
0
mirror of synced 2026-01-15 15:01:34 -05:00
Files
docs/translations/ru-RU/data/reusables/actions/github_token-input-example.md
2022-11-16 21:42:42 +00:00

27 lines
869 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
ms.openlocfilehash: eeaa56fe9499f2e74e2baa66f883d9aa31bc81f9
ms.sourcegitcommit: 47bd0e48c7dba1dde49baff60bc1eddc91ab10c5
ms.translationtype: HT
ms.contentlocale: ru-RU
ms.lasthandoff: 09/05/2022
ms.locfileid: "147065733"
---
В этом примере рабочего процесса используется [действие маркировщика](https://github.com/actions/labeler), для которого требуется `GITHUB_TOKEN` в качестве значения входного параметра `repo-token`:
```yaml{:copy}
name: Pull request labeler
on: [ pull_request_target ]
permissions:
contents: read
pull-requests: write
jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: {% data reusables.actions.action-labeler %}
with:
repo-token: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
```