This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
build(deps): bump pandas from 2.1.2 to 2.1.3 #10
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
# Based on | |
# - https://github.com/srggrs/assign-one-project-github-action | |
name: add-dependabot-request-to-project-t-ast.yaml | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
env: | |
GITHUB_TOKEN: ${{ secrets.SENZING_GITHUB_ACCESS_TOKEN }} | |
CREATOR: ${{ github.event.pull_request.user.login }} | |
jobs: | |
add-dependabot-request-to-project: | |
name: Add dependabot pull request to Senzing App-Server project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Assign pull request to project | |
env: | |
BOOL: ${{ contains( env.CREATOR, 'dependabot' ) }} | |
uses: Senzing/github-action-add-issue-to-project@main | |
if: ${{ env.BOOL == 'true' }} | |
with: | |
project: "https://github.com/orgs/Senzing/projects/6" |