Unverified Commit f6d4bd3a authored by Xuehai Pan's avatar Xuehai Pan Committed by GitHub
Browse files

[CI] enable dependabot for GHA workflows (#950)

* chore: add .editorconfig

* feat: enable dependabot for GHA workflows
parent 7fb06776
# https://editorconfig.org/
root = true
[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
insert_final_newline = true
[*.{py,pyi}]
indent_size = 4
[*.{cpp,hpp,cxx,cc,c,h,cu,cuh}]
indent_size = 4
[*.{yaml,yml}]
indent_size = 2
[.clang-{format,tidy}]
indent_size = 2
[Makefile]
indent_style = tab
[*.sh]
indent_size = 4
[*.bat]
indent_size = 4
end_of_line = crlf
[*.md]
indent_size = 2
x-soft-wrap-text = true
[*.rst]
indent_size = 4
x-soft-wrap-text = true
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "12:00"
timezone: "Asia/Shanghai"
commit-message:
prefix: "[CI]"
name: Dependent Bot Action
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
bot-task:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment