Skip to content

.github/workflows/main.yml #3

.github/workflows/main.yml

.github/workflows/main.yml #3

Workflow file for this run

on:
workflow_dispatch:
jobs:
delete-workflow-runs:
runs-on: ubuntu-latest
name: A demo job to delete workflow runs
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Delete workflow runs
uses: ./ # Uses an action in the root directory
id: delete-old-workflow-runs
with:
repository: Rubber1Duck/delete-old-workflow-runs
workflow: ".github/workflows/main.yml"
older-than-seconds: 60
# created-before: "2021-12-08T16:34:00Z"
# actor: [email protected]
# branch: main
# event: push
# event: completed
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}