Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2
updates:
- package-ecosystem: github-actions
directory: /
groups:
github-actions:
patterns:
- "*" # Group all Actions updates into a single larger pull request
schedule:
interval: weekly

updates:
- package-ecosystem: cargo
directory: /
schedule:
interval: weekly
4 changes: 2 additions & 2 deletions .github/workflows/create_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name: Build
on:
workflow_dispatch:
push:
branches: [ master ]
branches: [ main ]
tags:
- v*
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
build-wheels:
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
py-cpp-demangle: Demangles C++ linker symbols
============================================================

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

A package for demangling C++ linker symbol strings

Expand Down
Loading