#!/usr/bin/env perl

package
	git_update_staging;

# ABSTRACT: Update staging Puppet environment from testing branch

use strict;
use warnings;

use App::Puppet::Environment::Updater;

App::Puppet::Environment::Updater->new_with_options({
	environment => 'staging',
	from        => 'testing'
})->run();

__END__

=pod

=encoding UTF-8

=head1 NAME

git_update_staging - Update staging Puppet environment from testing branch

=head1 VERSION

version 0.001002

=head1 SYNOPSIS

	$ git update-staging

=head1 SEE ALSO

=over

=item *

L<App::Puppet::Environment::Updater|App::Puppet::Environment::Updater>

=back

=head1 AUTHOR

Manfred Stock <mstock@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2022 by Manfred Stock.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
