-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from ASFHyP3/develop
Release v0.3.0
- Loading branch information
Showing
16 changed files
with
265 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
name: Create Jira issue | ||
|
||
on: | ||
issues: | ||
types: [labeled] | ||
|
||
jobs: | ||
call-create-jira-issue-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/[email protected] | ||
secrets: | ||
JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} | ||
JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL }} | ||
JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN }} | ||
JIRA_PROJECT: ${{ secrets.JIRA_PROJECT }} | ||
JIRA_FIELDS: ${{ secrets.JIRA_FIELDS }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,35 +3,5 @@ name: Static analysis | |
on: push | ||
|
||
jobs: | ||
gitleaks: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Scan for secrets with gitleaks | ||
uses: zricethezav/gitleaks-action@master | ||
|
||
|
||
trufflehog: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install trufflehog gitdb2=="2.*" | ||
- name: Scan for secrets with trufflehog | ||
run: | | ||
git fetch origin +refs/tags/*:refs/tags/* | ||
export LAST_TAG_HASH=$(git show-ref --hash -- $(git describe --abbrev=0)) | ||
trufflehog --regex --entropy True --since_commit "${LAST_TAG_HASH}" \ | ||
--exclude_paths .trufflehog.txt file://"${PWD}" | ||
call-secrets-analysis-workflow: | ||
uses: ASFHyP3/actions/.github/workflows/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
.*gitleaks.toml$ | ||
.*mkdocs_theme.yml$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<!-- | ||
Copyright (c) 2016-2020 Martin Donath <[email protected]> | ||
Copyright (c) 2016-2023 Martin Donath <[email protected]> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to | ||
|
@@ -20,9 +20,26 @@ | |
IN THE SOFTWARE. | ||
--> | ||
|
||
<!-- Logo --> | ||
{% if config.theme.logo %} | ||
<img src="{{ config.theme.logo | url }}" alt="logo" /> | ||
{% elif config.theme.icon.logo %} | ||
{% include ".icons/" ~ config.theme.icon.logo ~ ".svg" %} | ||
{% endif %} | ||
<!-- Adapted from https://github.com/squidfunk/mkdocs-material/blob/9.4.2/src/templates/partials/copyright.html --> | ||
|
||
<!-- Copyright and theme information --> | ||
<div class="md-copyright"> | ||
<div class="md-copyright__highlight"> | ||
{% if config.copyright or config.theme.copyright %} | ||
© <span id="copyright-year"></span> | ||
<script type="text/javascript"> | ||
current_year = new Date().getFullYear(); | ||
document.getElementById("copyright-year").innerHTML=current_year; | ||
</script> | ||
{{ config.copyright if config.copyright else config.theme.copyright}} | ||
{% endif %} | ||
<!-- ASF non-discrimination disclaimer--> | ||
| ||
<a href="https://www.alaska.edu/nondiscrimination" | ||
target="_blank" | ||
class="md-copyright-link"> | ||
UA is an AA/EO employer and educational institution and prohibits | ||
illegal discrimination against any individual | ||
</a> | ||
</div> | ||
</div> |
Oops, something went wrong.