Skip to content

Commit de03235

Browse files
authored
Merge pull request #17 from benfred/enable_dependabot
Enable dependabot for keeping actions/cargo dependencies up to date
2 parents 5cc1300 + 22adb02 commit de03235

3 files changed

Lines changed: 20 additions & 4 deletions

File tree

.github/dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
groups:
6+
github-actions:
7+
patterns:
8+
- "*" # Group all Actions updates into a single larger pull request
9+
schedule:
10+
interval: weekly
11+
12+
updates:
13+
- package-ecosystem: cargo
14+
directory: /
15+
schedule:
16+
interval: weekly

.github/workflows/create_wheels.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ name: Build
33
on:
44
workflow_dispatch:
55
push:
6-
branches: [ master ]
6+
branches: [ main ]
77
tags:
88
- v*
99
pull_request:
10-
branches: [ master ]
10+
branches: [ main ]
1111

1212
jobs:
1313
build-wheels:

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
py-cpp-demangle: Demangles C++ linker symbols
22
============================================================
33

4-
.. image:: https://github.com/benfred/py-cpp-demangle/workflows/Build/badge.svg?branch=master
5-
:target: https://github.com/benfred/py-cpp-demangle/actions?query=branch%3Amaster
4+
.. image:: https://github.com/benfred/py-cpp-demangle/workflows/Build/badge.svg?branch=main
5+
:target: https://github.com/benfred/py-cpp-demangle/actions?query=branch%3Amain
66

77
A package for demangling C++ linker symbol strings
88

0 commit comments

Comments
 (0)