Document two two .github subdirectories

This commit is contained in:
ISSOtm
2021-07-25 12:12:36 +02:00
parent 03bb510588
commit fbe29006d4

View File

@@ -47,31 +47,31 @@ The RGBDS source code file structure somewhat resembles the following:
. .
├── .github/ ├── .github/
   ├── actions/ ├── actions/
   │   └── ... └── ...
   └── workflows/ └── workflows/
      └── ... └── ...
├── contrib/ ├── contrib/
   ├── zsh_compl/ ├── zsh_compl/
   │   └── ... └── ...
   └── ... └── ...
├── include/ ├── include/
   └── ... └── ...
├── src/ ├── src/
   ├── asm/ ├── asm/
   │   └── ... └── ...
   ├── extern/ ├── extern/
   │   └── ... └── ...
   ├── fix/ ├── fix/
   │   └── ... └── ...
   ├── gfx/ ├── gfx/
   │   └── ... └── ...
   ├── link/ ├── link/
   │   └── ... └── ...
   ├── CMakeLists.txt ├── CMakeLists.txt
   └── ... └── ...
├── test/ ├── test/
   ├── ... ├── ...
│ └── run-tests.sh │ └── run-tests.sh
├── CMakeLists.txt ├── CMakeLists.txt
├── Makefile ├── Makefile
@@ -80,6 +80,9 @@ The RGBDS source code file structure somewhat resembles the following:
- ``.github/`` - files and scripts related to the integration of the RGBDS codebase with - ``.github/`` - files and scripts related to the integration of the RGBDS codebase with
GitHub. GitHub.
* ``actions/`` - scripts used by workflow files.
* ``workflows/`` - CI workflow description files.
- ``contrib/`` - scripts and other resources which may be useful to users and developers of - ``contrib/`` - scripts and other resources which may be useful to users and developers of
RGBDS. RGBDS.