-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathautofix.yml
More file actions
30 lines (26 loc) · 881 Bytes
/
autofix.yml
File metadata and controls
30 lines (26 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# --------------------------------------------------------------------------
# autofix.ci Workflow
#
# Automatically fixes linting and formatting issues in pull requests by calling
# a shared workflow.
#
# Requirements:
# 1. This workflow name must be `autofix.ci`.
# 2. The autofix.ci GitHub App must be installed on this repository.
# Installation link: https://github.com/marketplace/autofix-ci
# --------------------------------------------------------------------------
name: autofix.ci
on:
pull_request:
push:
branches:
- main
jobs:
autofix:
uses: zotero-plugin-dev/workflows/.github/workflows/autofix.yml@main
permissions:
contents: read
# Optional: To override the default command defined in the reusable workflow,
# uncomment the 'with' block below and specify your custom command.
# with:
# command: 'pnpm lint:fix'