Refactor: Move RentalControl to a coordinator #134
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# SPDX-FileCopyrightText: 2021 Andrew Grimberg <[email protected]> | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Release Drafter | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
branches: | |
- main | |
# pull_request is required for autolabeler | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
# pull_request_target is required for autolabeler on PRs from forks | |
pull_request_target: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
update_release_draft: | |
permissions: | |
# write permission is required to create releases | |
contents: write | |
# write permission is required for autolabeler | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
# yamllint disable-line rule:line-length | |
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5 # v6.1.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |