Skip to content

Commit

Permalink
build: skip for automated PRs and run only when opened
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Jul 29, 2024
1 parent 7927319 commit 8b4f45f
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ on:

# Trigger on pull request events:
pull_request_target:
types: [opened, edited, synchronize, reopened]
types: [opened, reopened]

# Global permissions:
permissions:
Expand All @@ -53,15 +53,18 @@ permissions:
# Workflow jobs:
jobs:

# Define a job for checking the contributing guidelines acknowledgment...
# Define a job for checking the contributing guidelines acceptance...
check_acknowledgment:

# Define a display name:
name: 'Check Contributing Guidelines Acknowledgment'
name: 'Check Contributing Guidelines Acceptance'

# Define the type of virtual host machine:
runs-on: ubuntu-latest

# Skip this job for PRs opened by the stdlib-bot:
if: github.event.pull_request.user.login != 'stdlib-bot'

This comment has been minimized.

Copy link
@kgryte

kgryte Jul 29, 2024

Member

I believe you also need to account for dependabot, correct?


# Define the sequence of job steps...
steps:
# Checkout the repository:
Expand Down

0 comments on commit 8b4f45f

Please sign in to comment.