Skip to content

Commit

Permalink
Test a new thing
Browse files Browse the repository at this point in the history
  • Loading branch information
danudey committed Aug 21, 2024
1 parent 0427e4e commit 361e4b5
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/check_random_status.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Status-er
on:
pull_request:
types: [labeled, unlabeled, edited, synchronize]

jobs:
label:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
steps:
- name: Set PR Status to pending
uses: teamniteo/[email protected]
with:
# Pull Request number (Mandatory)
pr_number: 3

# State to apply (Mandatory)
# Any of the (error | failure | pending | success) states
state: pending

# Name of the repository in {organization}/{repo_name} format (Mandatory)
repository: danudey/pystrptime

# Name to identify the Status (Optional)
# Defaults to `default`
context: default

# The target URL to associate with the Status (Optional)
# This URL will be linked from the Github UI to allow users to easily see the source of the status.
target_url: https://example.target_url.com

# A short description of the status (Optional)
description: "An example description"

env:
# Default Github Token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 361e4b5

Please sign in to comment.