Skip to content

Emit a deprecation warning on an encounter of a String field when deriving Properties #1982

Emit a deprecation warning on an encounter of a String field when deriving Properties

Emit a deprecation warning on an encounter of a String field when deriving Properties #1982

name: Auto approve
on:
pull_request_target:
types:
- opened
- reopened
- synchronize
- ready_for_review
- review_requested
jobs:
auto-approve:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- name: Check if organization member
id: is_organization_member
uses: JamesSingleton/[email protected]
with:
organization: "yewstack"
username: ${{ github.actor }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Auto approve
uses: hmarr/auto-approve-action@v3
if: ${{ steps.is_organization_member.outputs.result == 'true' || github.actor == 'dependabot[bot]' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}