[Snyk] Upgrade sharp from 0.33.2 to 0.33.4 #1
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
name: Add Pull Requests to PR review project | |
on: | |
pull_request: | |
types: | |
- opened | |
jobs: | |
add-to-project: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if actor is an organization member | |
id: check-membership | |
run: | | |
if [[ "${{ github.actor }}" == "mindsdb/"* ]]; then | |
echo "::set-output name=isOrgMember::true" | |
else | |
echo "::set-output name=isOrgMember::false" | |
fi | |
shell: bash | |
- name: Add issue to project | |
if: steps.check-membership.outputs.isOrgMember == 'true' | |
uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/mindsdb/projects/65 | |
github-token: ${{ secrets.ADD_TO_PR }} |