ryanahamilton opened a new pull request #12486: URL: https://github.com/apache/airflow/pull/12486
- Drops an unnecessary use of "master" from the codebase in the spirit of #9351. - Establishes naming pattern (depicted below) where asset names correlate with the template name that consumes them. **Files (sample) before:** ``` static/ ├─ css/ │ ├─ graph.css │ ├─ main.css ├─ js/ │ ├─ base.js │ ├─ graph.js templates/ ├─ airflow/ │ ├─ graph.html │ ├─ master.html ``` **Files (sample) after:** ``` static/ ├─ css/ │ ├─ graph.css │ ├─ main.css ├─ js/ │ ├─ graph.js │ ├─ main.js templates/ ├─ airflow/ │ ├─ graph.html │ ├─ main.html ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
