Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: fox-it/dissect.btrfs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.2
Choose a base ref
...
head repository: fox-it/dissect.btrfs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.3
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 15, 2024

  1. Run CI on pushed tags (#7)

    Schamper authored Mar 15, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4886d01 View commit details

Commits on Mar 21, 2024

  1. Bump minimal tox version (#8)

    Schamper authored Mar 21, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b963ab8 View commit details

Commits on Mar 28, 2024

  1. Update dissect-ci template (#11)

    Miauwkeru authored Mar 28, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8fea322 View commit details

Commits on Apr 11, 2024

  1. Add a pull request template (#12)

    Miauwkeru authored Apr 11, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    339acfb View commit details
Showing with 29 additions and 2 deletions.
  1. +24 −0 .github/pull_request_template.md
  2. +4 −1 .github/workflows/dissect-ci.yml
  3. +1 −1 tox.ini
24 changes: 24 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!--
Thank you for submitting a Pull Request. Please:
* Read our commit style guide:
Commit messages should adhere to the following points:
* Separate subject from body with a blank line
* Limit the subject line to 50 characters as much as possible
* Capitalize the subject line
* Do not end the subject line with a period
* Use the imperative mood in the subject line
* The verb should represent what was accomplished (Create, Add, Fix etc)
* Wrap the body at 72 characters
* Use the body to explain the what and why vs. the how
For an example, look at the following link:
https://docs.dissect.tools/en/latest/contributing/style-guide.html#example-commit-message
* Include a description of the proposed changes and how to test them.
* After creation, associate the PR with an issue, under the development section.
Or use closing keywords in the body during creation:
E.G:
* close(|s|d) #<nr>
* fix(|es|ed) #<nr>
* resolve(|s|d) #<nr>
-->
5 changes: 4 additions & 1 deletion .github/workflows/dissect-ci.yml
Original file line number Diff line number Diff line change
@@ -3,6 +3,8 @@ on:
push:
branches:
- main
tags:
- '*'
pull_request:
workflow_dispatch:

@@ -21,7 +23,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: packages
path: dist/
@@ -32,5 +34,6 @@ jobs:
trigger-tests:
needs: [publish]
uses: fox-it/dissect-workflow-templates/.github/workflows/dissect-ci-demand-test-template.yml@main
secrets: inherit
with:
on-demand-test: 'dissect.target'
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ envlist = lint, py3, pypy3
# requires if they are not available on the host system. This requires the
# locally installed tox to have a minimum version 3.3.0. This means the names
# of the configuration options are still according to the tox 3.x syntax.
minversion = 4.2.4
minversion = 4.4.3
# This version of virtualenv will install setuptools version 65.5.0 and pip
# 22.3. These versions fully support python projects defined only through a
# pyproject.toml file (PEP-517/PEP-518/PEP-621)