-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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 #704 from nasa/devel
v2.0.0 PR
- Loading branch information
Showing
6,214 changed files
with
29,321 additions
and
935,148 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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,26 @@ | ||
--- | ||
name: Bug Report | ||
about: Report a problem using F´ | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
| | | | ||
|:---|:---| | ||
|**_F´ Version_**| | | ||
|**_Affected Component_**| | | ||
--- | ||
## Problem Description | ||
|
||
A description of the problem with sufficient detail to understand the issue. | ||
|
||
## How to Reproduce | ||
|
||
1. | ||
2. | ||
3. | ||
|
||
## Expected Behavior | ||
|
||
A description of the expected behavior. |
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,21 @@ | ||
--- | ||
name: Feature Request | ||
about: Suggest improvements to F´ | ||
title: '' | ||
labels: enhancement | ||
assignees: '' | ||
|
||
--- | ||
|
||
| | | | ||
|:---|:---| | ||
|**_F´ Version_**| | | ||
|**_Affected Component_**| | | ||
--- | ||
## Feature Description | ||
|
||
A quick description of the requested feature. | ||
|
||
## Rationale | ||
|
||
A rationale for why the feature should be implemented in F´. |
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/bash | ||
|
||
# Exit when any command fails | ||
set -e | ||
set -x | ||
|
||
cd "$GITHUB_WORKSPACE" | ||
REMOTE="${1:-origin}" | ||
git config --local user.email "nasa-fprime[bot]@users.noreply.github.com" | ||
git config --local user.name "nasa-fprime[bot]" | ||
git fetch "${REMOTE}" release/documentation | ||
git fetch "${REMOTE}" devel | ||
git checkout release/documentation | ||
git merge "${REMOTE}"/devel | ||
${GITHUB_WORKSPACE}/docs/doxygen/generate_docs.bash | ||
git add -Af "${GITHUB_WORKSPACE}/docs" | ||
|
||
|
||
git commit -m "Autodoc on $(date)" 1>/dev/null | ||
git push "${REMOTE}" |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: 'fprime Automatic Documentation' | ||
description: 'Runs continuous documentation updates on fprime' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
entrypoint: '/autodoc.bash' | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
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,41 @@ | ||
ignore$ | ||
/html/ | ||
(?:^|/)(?i)COPYRIGHT | ||
(?:^|/)(?i)LICEN[CS]E | ||
(?:^|/)vendor/ | ||
^\.github/ | ||
^Autocoders/Python/test/.*\.xml$ | ||
/doc/xml/ | ||
/third-party/ | ||
\.min\. | ||
\.bak$ | ||
\.bin$ | ||
\.dat$ | ||
\.doc$ | ||
\.docx$ | ||
\.eot$ | ||
\.gif$ | ||
\.inv$ | ||
\.jar$ | ||
\.jpg$ | ||
\.log$ | ||
\.map$ | ||
\.md5$ | ||
\.mdxml$ | ||
\.mdzip$ | ||
\.otf$ | ||
\.pdf$ | ||
\.png$ | ||
\.pptx$ | ||
\.rtf$ | ||
\.ser$ | ||
\.sty$ | ||
\.svg$ | ||
\.tex$ | ||
\.ttf$ | ||
\.vm$ | ||
\.woff$ | ||
\.woff2$ | ||
\.xls$ | ||
\.xlsx$ | ||
\.xsd$ |
Oops, something went wrong.